Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

crypt a string jquery

var encrypted = CryptoJS.AES.encrypt("Message", "Secret Passphrase");
alert(encrypted.toString());
var decrypted = CryptoJS.AES.decrypt(encrypted, "Secret Passphrase");
alert(decrypted.toString());
Comment

PREVIOUS NEXT
Code Example
Javascript :: js timezone location 
Javascript :: random color 
Javascript :: how to convert an array into single quote strings 
Javascript :: how to do get request in axios 
Javascript :: model nodejs 
Javascript :: use appsettings.json in console app 
Javascript :: how to auto update package.json 
Javascript :: javascript download html to pdf 
Javascript :: javascript convert timezone name to abbreviation 
Javascript :: document on click not working 
Javascript :: how to create a new angular project in visual studio code 
Javascript :: google map react search place 
Javascript :: react native firebase community template 
Javascript :: convert namednodemap to object 
Javascript :: javascript find the longest string in array 
Javascript :: react hello world 
Javascript :: js operators 
Javascript :: angular convert map values to array 
Javascript :: read json file into array javascript 
Javascript :: babel-polyfill whatwg-fetch 
Javascript :: uncheck multiple checkboxes javascript 
Javascript :: express middleware pass parameter 
Javascript :: reverse a string while keeping spaces in javascript 
Javascript :: react cdn link 
Javascript :: how to get class name of element in javascript 
Javascript :: next js notifications 
Javascript :: javascript moment 
Javascript :: mongodb mongoose with next js connection 
Javascript :: local reload go to top 
Javascript :: ant design charts 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =