Removed output

This commit is contained in:
2025-10-27 17:37:57 +01:00
parent efaebb2f4e
commit 560b15ec93

View File

@@ -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,