You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {string} salt Optional salt, for example SHA-512 use "$6$salt$". Please note: SHA-512 only works on glibc2 systems.
* @param {function} callback The callback function, for example `function(err, hash)` where `hash` is {string} A generated hash in format `$id$salt$encrypted`
* @see https://en.wikipedia.org/wiki/Crypt_(C)
*/
var crypt3 = module.exports = function(key, salt, cb) {