How to use the RabbitLegacy function from crypto-js
Find comprehensive JavaScript crypto-js.RabbitLegacy code examples handpicked from public code repositorys.
GitHub: mnismt/MyHash
113 114 115 116 117 118 119 120 121 122
}, rabbit() { return CryptoJS.Rabbit.encrypt(this.text, this.serect).toString(); }, rabbitlegacy() { return CryptoJS.RabbitLegacy.encrypt(this.text, this.serect).toString(); }, base64() { let words = CryptoJS.enc.Utf8.parse(this.text); return CryptoJS.enc.Base64.stringify(words);
0
1
1
+ 17 other calls in file
crypto-js.AES is the most popular function in crypto-js (907 examples)