⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tlsinputstream.java

📁 J2ME加密算法的代码!里面包括常用的算法
💻 JAVA
字号:
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 TlsProtocolHandler handler = null;        protected 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    {        byte[] buf = new byte[1];        if (this.read(buf) < 0)        {            return -1;        }        return buf[0];    }        public void close()        throws IOException    {        handler.close();    }}

⌨️ 快捷键说明

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