tlsciphersuite.java
来自「kmlnjlkj nlkjlkjkljl okopokipoipo oipipi」· Java 代码 · 共 30 行
JAVA
30 行
package org.bouncycastle.crypto.tls;import java.io.IOException;/** * A generic class for ciphersuites in TLS 1.0. */public abstract class TlsCipherSuite{ protected static final short KE_RSA = 1; protected static final short KE_RSA_EXPORT = 2; protected static final short KE_DHE_DSS = 3; protected static final short KE_DHE_DSS_EXPORT = 4; protected static final short KE_DHE_RSA = 5; protected static final short KE_DHE_RSA_EXPORT = 6; protected static final short KE_DH_DSS = 7; protected static final short KE_DH_RSA = 8; protected static final short KE_DH_anon = 9; protected abstract void init(byte[] ms, byte[] cr, byte[] sr); protected abstract byte[] encodePlaintext(short type, byte[] plaintext, int offset, int len); protected abstract byte[] decodeCiphertext(short type, byte[] plaintext, int offset, int len, TlsProtocolHandler handler) throws IOException; protected abstract short getKeyExchangeAlgorithm();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?