| Modifier and Type | Field and Description |
|---|---|
static int |
AEAD_CCM |
static int |
AEAD_CHACHA20_POLY1305 |
static int |
AEAD_GCM |
protected TlsCryptoParameters |
cryptoParams |
protected TlsAEADCipherImpl |
decryptCipher |
protected byte[] |
decryptNonce |
protected TlsAEADCipherImpl |
encryptCipher |
protected byte[] |
encryptNonce |
protected int |
fixed_iv_length |
protected boolean |
isTLSv13 |
protected int |
keySize |
protected int |
macSize |
protected int |
nonceMode |
protected int |
record_iv_length |
| Constructor and Description |
|---|
TlsAEADCipher(TlsCryptoParameters cryptoParams,
TlsAEADCipherImpl encryptCipher,
TlsAEADCipherImpl decryptCipher,
int keySize,
int macSize,
int aeadType) |
| Modifier and Type | Method and Description |
|---|---|
TlsDecodeResult |
decodeCiphertext(long seqNo,
short recordType,
ProtocolVersion recordVersion,
byte[] ciphertext,
int ciphertextOffset,
int ciphertextLength)
Validate and decrypt the passed in cipher text using the current cipher suite.
|
TlsEncodeResult |
encodePlaintext(long seqNo,
short contentType,
ProtocolVersion recordVersion,
int headerAllocation,
byte[] plaintext,
int plaintextOffset,
int plaintextLength)
Encrypt and MAC the passed in plain text using the current cipher suite.
|
protected byte[] |
getAdditionalData(long seqNo,
short recordType,
ProtocolVersion recordVersion,
int ciphertextLength,
int plaintextLength) |
int |
getCiphertextDecodeLimit(int plaintextLimit)
Return the maximum input size for a ciphertext given a maximum output size for the plaintext
of plaintextLimit bytes.
|
int |
getCiphertextEncodeLimit(int plaintextLength,
int plaintextLimit)
Return the maximum output size for a ciphertext given an actual input plaintext size of
plaintextLength bytes and a maximum input plaintext size of plaintextLimit bytes.
|
int |
getPlaintextLimit(int ciphertextLimit)
Return the maximum size for the plaintext given ciphertextlimit bytes of ciphertext.
|
void |
rekeyDecoder() |
void |
rekeyEncoder() |
protected void |
setup13Cipher(TlsAEADCipherImpl cipher,
byte[] nonce,
TlsSecret secret,
short hash) |
boolean |
usesOpaqueRecordType() |
public static final int AEAD_CCM
public static final int AEAD_CHACHA20_POLY1305
public static final int AEAD_GCM
protected final TlsCryptoParameters cryptoParams
protected final int keySize
protected final int macSize
protected final int fixed_iv_length
protected final int record_iv_length
protected final TlsAEADCipherImpl decryptCipher
protected final TlsAEADCipherImpl encryptCipher
protected final byte[] decryptNonce
protected final byte[] encryptNonce
protected final boolean isTLSv13
protected final int nonceMode
public TlsAEADCipher(TlsCryptoParameters cryptoParams, TlsAEADCipherImpl encryptCipher, TlsAEADCipherImpl decryptCipher, int keySize, int macSize, int aeadType) throws java.io.IOException
java.io.IOExceptionpublic int getCiphertextDecodeLimit(int plaintextLimit)
TlsCiphergetCiphertextDecodeLimit in interface TlsCipherplaintextLimit - the maximum output size for the plaintext.public int getCiphertextEncodeLimit(int plaintextLength,
int plaintextLimit)
TlsCiphergetCiphertextEncodeLimit in interface TlsCipherplaintextLength - the actual input size for the plaintext.plaintextLimit - the maximum input size for the plaintext.public int getPlaintextLimit(int ciphertextLimit)
TlsCiphergetPlaintextLimit in interface TlsCipherciphertextLimit - the maximum number of bytes of ciphertext.public TlsEncodeResult encodePlaintext(long seqNo, short contentType, ProtocolVersion recordVersion, int headerAllocation, byte[] plaintext, int plaintextOffset, int plaintextLength) throws java.io.IOException
TlsCipherencodePlaintext in interface TlsCipherseqNo - sequence number of the message represented by plaintext.contentType - content type of the message represented by plaintext.recordVersion - ProtocolVersion used for the record.headerAllocation - extra bytes to allocate at start of returned byte array.plaintext - array holding input plain text to the cipher.plaintextOffset - offset into input array the plain text starts at.plaintextLength - length of the plaintext in the array.TlsEncodeResult containing the result of encoding (after 'headerAllocation' unused bytes).java.io.IOExceptionpublic TlsDecodeResult decodeCiphertext(long seqNo, short recordType, ProtocolVersion recordVersion, byte[] ciphertext, int ciphertextOffset, int ciphertextLength) throws java.io.IOException
TlsCipherdecodeCiphertext in interface TlsCipherseqNo - sequence number of the message represented by ciphertext.recordType - content type used in the record for this message.recordVersion - ProtocolVersion used for the record.ciphertext - array holding input cipher text to the cipher.ciphertextOffset - offset into input array the cipher text starts at.ciphertextLength - length of the cipher text in the array.TlsDecodeResult containing the result of decoding.java.io.IOExceptionpublic void rekeyDecoder()
throws java.io.IOException
rekeyDecoder in interface TlsCipherjava.io.IOExceptionpublic void rekeyEncoder()
throws java.io.IOException
rekeyEncoder in interface TlsCipherjava.io.IOExceptionpublic boolean usesOpaqueRecordType()
usesOpaqueRecordType in interface TlsCipherprotected byte[] getAdditionalData(long seqNo,
short recordType,
ProtocolVersion recordVersion,
int ciphertextLength,
int plaintextLength)
throws java.io.IOException
java.io.IOExceptionprotected void setup13Cipher(TlsAEADCipherImpl cipher, byte[] nonce, TlsSecret secret, short hash) throws java.io.IOException
java.io.IOException