Skip to content
Snippets Groups Projects
Unverified Commit 5822eb78 authored by akwizgran's avatar akwizgran
Browse files

Remove 'this'.

parent ecb62f00
No related branches found
No related tags found
1 merge request!557Protocol versioning for BTP
Pipeline #
......@@ -124,7 +124,7 @@ class StreamEncrypterImpl implements StreamEncrypter {
System.arraycopy(frameKey.getBytes(), 0, streamHeaderPlaintext,
INT_16_BYTES + INT_64_BYTES, SecretKey.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);
// Encrypt and authenticate the stream header key
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment