mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-18 21:59:54 +01:00
Remove 'this'.
This commit is contained in:
@@ -124,7 +124,7 @@ class StreamEncrypterImpl implements StreamEncrypter {
|
|||||||
System.arraycopy(frameKey.getBytes(), 0, streamHeaderPlaintext,
|
System.arraycopy(frameKey.getBytes(), 0, streamHeaderPlaintext,
|
||||||
INT_16_BYTES + INT_64_BYTES, SecretKey.LENGTH);
|
INT_16_BYTES + INT_64_BYTES, SecretKey.LENGTH);
|
||||||
byte[] streamHeaderCiphertext = new byte[STREAM_HEADER_LENGTH];
|
byte[] streamHeaderCiphertext = new byte[STREAM_HEADER_LENGTH];
|
||||||
System.arraycopy(this.streamHeaderNonce, 0, streamHeaderCiphertext, 0,
|
System.arraycopy(streamHeaderNonce, 0, streamHeaderCiphertext, 0,
|
||||||
STREAM_HEADER_NONCE_LENGTH);
|
STREAM_HEADER_NONCE_LENGTH);
|
||||||
// Encrypt and authenticate the stream header key
|
// Encrypt and authenticate the stream header key
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user