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
No related merge requests found
...@@ -124,7 +124,7 @@ class StreamEncrypterImpl implements StreamEncrypter { ...@@ -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 {
......
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