📄 tlsnullciphersuite.java
字号:
package org.bouncycastle.crypto.tls;/** * A NULL CipherSuite in java, this should only be used during handshake. */public class TlsNullCipherSuite extends TlsCipherSuite{ protected void init(byte[] ms, byte[] cr, byte[] sr) { throw new TlsRuntimeException("Sorry, init of TLS_NULL_WITH_NULL_NULL is forbidden"); } protected byte[] encodePlaintext(short type, byte[] plaintext, int offset, int len) { byte[] result = new byte[len]; System.arraycopy(plaintext, offset, result, 0, len); return result; } protected byte[] decodeCiphertext(short type, byte[] plaintext, int offset, int len, TlsProtocolHandler handler) { byte[] result = new byte[len]; System.arraycopy(plaintext, offset, result, 0, len); return result; } protected short getKeyExchangeAlgorithm() { return 0; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -