How to use the RC4 function from crypto-js

Find comprehensive JavaScript crypto-js.RC4 code examples handpicked from public code repositorys.

107
108
109
110
111
112
113
114
115
116
},
tripledes() {
  return CryptoJS.TripleDES.encrypt(this.text, this.serect).toString();
},
rc4() {
  return CryptoJS.RC4.encrypt(this.text, this.serect).toString();
},
rabbit() {
  return CryptoJS.Rabbit.encrypt(this.text, this.serect).toString();
},
fork icon0
star icon1
watch icon1

+ 17 other calls in file