Remove log

This commit is contained in:
MartinBraquet
2025-10-23 18:00:11 +02:00
parent aad722c723
commit 06ee267804

View File

@@ -32,7 +32,7 @@ export function encryptMessage(plaintext: string) {
const ciphertext = Buffer.concat([cipher.update(plaintext, "utf8"), cipher.final()]);
const tag = cipher.getAuthTag();
console.debug(plaintext, iv, ciphertext, tag)
// console.debug(plaintext, iv, ciphertext, tag)
return {
ciphertext: ciphertext.toString("base64"),