Guest User

Untitled

a guest
May 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var CryptographyJs = require("./cryptography.js");
  2.  
  3. CryptographyJs.hash({ algorithm: 'md5', length: 10 }, "asd");
  4. CryptographyJs.hash({ algorithm: 'md5' }, "asd");
  5. CryptographyJs.hash({ length: 10 }, "asd");
  6. CryptographyJs.hash({}, "asd");
Add Comment
Please, Sign In to add comment