Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save muthu32/0c43d905a5299d9f7b9a87aa176a9614 to your computer and use it in GitHub Desktop.
Save muthu32/0c43d905a5299d9f7b9a87aa176a9614 to your computer and use it in GitHub Desktop.
An example of base64 usage in cryptojs
var CryptoJS = require("crypto-js");//replace thie with script tag in browser env
//encrypt
var rawStr = "hello world!";
var wordArray = CryptoJS.enc.Utf8.parse(rawStr);
var base64 = CryptoJS.enc.Base64.stringify(wordArray);
console.log('encrypted:', base64);
//decrypt
var parsedWordArray = CryptoJS.enc.Base64.parse(base64);
var parsedStr = parsedWordArray.toString(CryptoJS.enc.Utf8);
console.log("parsed:",parsedStr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment