Skip to content

Instantly share code, notes, and snippets.

@bobmcwhirter
Created September 4, 2014 13:51
Show Gist options
  • Save bobmcwhirter/0a0170b2450cf99a0bef to your computer and use it in GitHub Desktop.
Save bobmcwhirter/0a0170b2450cf99a0bef to your computer and use it in GitHub Desktop.
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