Guest User

Untitled

a guest
Mar 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const { SHA256 } = require('crypto-js');
  2.  
  3. const password = 'I am so secret, dude';
  4. const hash = SHA256(password);
  5.  
  6. console.log(`My password is ${password}`);
  7. console.log(`My hashed password is ${hash}`);
Add Comment
Please, Sign In to add comment