tlsnullciphersuite.java

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

JAVA
34
字号
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 + =
减小字号Ctrl + -
显示快捷键?