improve rocket-chat-cliente interface

This commit is contained in:
Peter Maquiran
2022-01-07 11:21:14 +01:00
parent 6e0b54c0cf
commit d951bf6cc1
7 changed files with 158 additions and 56 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export class AESEncrypt {
//Decrypting the string contained in cipherParams using the PBKDF2 key
var decrypted = CryptoJS.AES.encrypt(encryptData, key128Bits1000Iterations, { mode: CryptoJS.mode.CBC, iv: iv, padding: CryptoJS.pad.Pkcs7 });
console.log('AES encrypt',decrypted.toString());
// console.log('AES encrypt',decrypted.toString());
return decrypted.toString();
}