tlsinputstream.java

来自「kmlnjlkj nlkjlkjkljl okopokipoipo oipipi」· Java 代码 · 共 42 行

JAVA
42
字号
package org.bouncycastle.crypto.tls;import java.io.IOException;import java.io.InputStream;/** * An InputStream for an TLS 1.0 connection. */public class TlsInputStream    extends InputStream{    private byte[] buf = new byte[1];    private TlsProtocolHandler handler = null;    TlsInputStream (TlsProtocolHandler handler)    {        this.handler = handler;    }    public int read(byte[] buf, int offset, int len)        throws IOException    {        return this.handler.readApplicationData(buf, offset, len);    }        public int read()        throws IOException    {        if (this.read(buf) < 0)        {            return -1;        }        return buf[0] & 0xff;    }        public void close()        throws IOException    {        handler.close();    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?