Created
September 4, 2014 13:51
-
-
Save bobmcwhirter/0a0170b2450cf99a0bef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var crypto = require('crypto'); | |
var cipher = crypto.createCipher( process.argv[2], 'tacos' ); | |
cipher.write('bob'); | |
console.log( cipher.final() ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment