var secret ="hello world";
encrypt=function () {
var cipher = CryptoJS.AES.encrypt("password", secret);
cipher = cipher.toString();
return cipher;
},
Encrypt Password
var secret ="hello world";
encrypt=function () {
var cipher = CryptoJS.AES.encrypt("password", secret);
cipher = cipher.toString();
return cipher;
},
Log in or sign up for Devpost to join the conversation.