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,