From f378a93bae8db103d1c5cee1e8cdc2b66f6b0c65 Mon Sep 17 00:00:00 2001 From: Jack Hadrill Date: Sun, 30 Jan 2022 00:08:51 +0000 Subject: [PATCH] Fix extraneous spacing --- src/romulus-m.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/romulus-m.ts b/src/romulus-m.ts index 31e7b10..f43b2c6 100644 --- a/src/romulus-m.ts +++ b/src/romulus-m.ts @@ -269,7 +269,7 @@ export function cryptoAeadDecrypt (ciphertext: number[], associatedData: number[ // The authentication tag is represented by the last 16 bytes of the ciphertext. const authenticationTag = ciphertext.slice(-16) ciphertext.length -= 16 - + let state = zeroedBuffer(16) let counter = resetCounter()