Skip to content

Instantly share code, notes, and snippets.

@manjeshpv
Created January 27, 2017 06:15
Show Gist options
  • Save manjeshpv/1a180ecb15f9ec70a690b350943aeead to your computer and use it in GitHub Desktop.
Save manjeshpv/1a180ecb15f9ec70a690b350943aeead to your computer and use it in GitHub Desktop.
sha512 Nodejs crypto
const crypto = require('crypto');
const hashedPass = crypto
.createHash('md5')
.update('manjesh')
.digest('hex');
console.log(hashedPass);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment