Fix extraneous spacing
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jack Hadrill 2022-01-30 00:08:51 +00:00
parent 6d5cbf5a32
commit f378a93bae

View File

@ -269,7 +269,7 @@ export function cryptoAeadDecrypt (ciphertext: number[], associatedData: number[
// The authentication tag is represented by the last 16 bytes of the ciphertext. // The authentication tag is represented by the last 16 bytes of the ciphertext.
const authenticationTag = ciphertext.slice(-16) const authenticationTag = ciphertext.slice(-16)
ciphertext.length -= 16 ciphertext.length -= 16
let state = zeroedBuffer(16) let state = zeroedBuffer(16)
let counter = resetCounter() let counter = resetCounter()