I am using CryptoJS to encrypt the password. Below is the code that i’m using to generate the encrypted password,but it is generating random value on every attempt .
let encrypted = CryptoJS.AES.encrypt(“pass”, “secret Key”);
console.log(encrypted.toString());
Anyone have idea about this and Implememnted this in ionic 3