i have the below encryption code on javascript and how can i decrypt the same in javascript? I am new to encryption/decryption and need someone help to decrypt the method. thanks in advance.
var text = "The quick brown fox jumps over the lazy dog. 👻 👻"; var secret = "René Über"; var encrypted = CryptoJS.AES.encrypt(text, secret); encrypted = encrypted.toString(); console.log("Cipher text: " + encrypted);