From 560b15ec931b005fefc3e4751090e14f6dcf6fc7 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Mon, 27 Oct 2025 17:37:57 +0100 Subject: [PATCH] Removed output --- src/utils/crypt.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/crypt.ts b/src/utils/crypt.ts index a7e1868..1ed7ddd 100644 --- a/src/utils/crypt.ts +++ b/src/utils/crypt.ts @@ -21,7 +21,6 @@ export function encrypt(text) { } export function decrypt({ iv, content, tag }) { - console.log(iv) const ENCRYPTION_KEY = Buffer.from(secrets.ENCRYPTION_KEY, "hex"); const decipher = crypto.createDecipheriv( ALGORITHM,