How to use the Rabbit function from crypto-js
Find comprehensive JavaScript crypto-js.Rabbit code examples handpicked from public code repositorys.
GitHub: mnismt/MyHash
110 111 112 113 114 115 116 117 118 119
}, rc4() { return CryptoJS.RC4.encrypt(this.text, this.serect).toString(); }, rabbit() { return CryptoJS.Rabbit.encrypt(this.text, this.serect).toString(); }, rabbitlegacy() { return CryptoJS.RabbitLegacy.encrypt(this.text, this.serect).toString(); },
0
1
1
+ 17 other calls in file
crypto-js.AES is the most popular function in crypto-js (907 examples)