org.bouncycastle.crypto.tls.TlsNullCipherSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15 Show documentation
Show all versions of bcprov-jdk15 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5.
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;
}
}