12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- var bcrypt = {};
- bcrypt.setRandomFallback = function(random) {};
- bcrypt.genSaltSync = function(rounds, seed_length) {};
- bcrypt.genSalt = function(rounds, seed_length, callback) {};
- bcrypt.hashSync = function(s, salt) {};
- bcrypt.hash = function(s, salt, callback) {};
- bcrypt.compareSync = function(s, hash) {};
- bcrypt.compare = function(s, hash, callback) {};
- bcrypt.getRounds = function(hash) {};
- bcrypt.getSalt = function(hash) {};
|