From 22c67872507cc95795a7a8a10745d60fc949fae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Petruni=C4=87?= Date: Sun, 1 Mar 2020 19:06:28 +0100 Subject: [PATCH] fin lint --- src/handshake-ik.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handshake-ik.ts b/src/handshake-ik.ts index 3bb3f0c..983cf2e 100644 --- a/src/handshake-ik.ts +++ b/src/handshake-ik.ts @@ -99,7 +99,7 @@ export class IKHandshake implements IHandshake { } } - public decrypt(ciphertext: bytes, session: NoiseSession): {plaintext: bytes, valid: boolean} { + public decrypt(ciphertext: bytes, session: NoiseSession): {plaintext: bytes; valid: boolean} { const cs = this.getCS(session, false); return this.ik.decryptWithAd(cs, Buffer.alloc(0), ciphertext); }