Skip to content

Commit

Permalink
Merge pull request brix#174 from jokecamp/patch-1
Browse files Browse the repository at this point in the history
Typo in AES Encryption Plain encryption example
  • Loading branch information
evanvosberg authored Sep 24, 2018
2 parents 89ce246 + 57e3110 commit 2436c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ See: https://code.google.com/p/crypto-js
var CryptoJS = require("crypto-js");

// Encrypt
var cipherText = CryptoJS.AES.encrypt('my message', 'secret key 123').toString();
var ciphertext = CryptoJS.AES.encrypt('my message', 'secret key 123').toString();

// Decrypt
var bytes = CryptoJS.AES.decrypt(ciphertext, 'secret key 123');
Expand Down

0 comments on commit 2436c1a

Please sign in to comment.