This commit is contained in:
Tben
2023-08-13 11:50:39 +01:00
parent d8995b53f5
commit ee16e28597
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -24,6 +24,8 @@ const decrypt = ({ encryptedString, encryptionKey, encryptionSalt }) => {
return decrypted;
} catch (error) {
console.log("Error in decrypting =>", error.message);
console.log("encryptionKey =>", encryptionKey);
console.log("encryptionSalt =>", encryptionSalt);
return null;
}
};