remove console

This commit is contained in:
我若为王 2024-12-05 15:16:52 +08:00
parent 956217388d
commit b40f23064a

View File

@ -9,7 +9,6 @@ const decrypt = function (ciphertext, iv, t) {
padding: crypto.pad.Pkcs7 padding: crypto.pad.Pkcs7
}); });
var dec = crypto.enc.Utf8.stringify(decrypted).toString(); var dec = crypto.enc.Utf8.stringify(decrypted).toString();
console.log(dec);
return dec; return dec;
} catch (error) { } catch (error) {
console.error("Decryption failed", error); console.error("Decryption failed", error);