
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
bcrypt-small
Advanced tools
bcrypt-small provides functions to asynchronously create and verify password hashes.
Passwords are encoded as UTF-8, cannot contain null bytes, and must be no longer than 72 bytes; an error is produced if these conditions are not met.
const bcrypt = require('bcrypt-small');
bcrypt.hash('password', 12, (error, hash) => {
if (error) {
console.error(error);
return;
}
bcrypt.compare('password', hash, (error, result) => {
console.log(result); // true
});
bcrypt.compare('not password', hash, (error, result) => {
console.log(result); // false
});
console.log(bcrypt.getRounds(hash)); // 12
});
Functions returning built-in promises are provided by bcrypt-small/promises
:
const bcrypt = require('bcrypt-small/promises');
(async () => {
const hash = await bcrypt.hash('password', 12);
console.log(await bcrypt.compare('password', hash)); // true
console.log(await bcrypt.compare('not password', hash)); // false
console.log(bcrypt.getRounds(hash)); // 12
})();
Hashes a password using 2**logRounds
rounds. The callback receives two
arguments: (error, hash)
, where hash
is a 60-character string. logRounds
should be at least 4 and at most 31. Aim for 0.1 seconds per hash or more.
Compares a password to a hash. The callback receives two arguments:
(error, result)
, where result
is true
if the password matches the hash and
false
if it does not.
Returns the number of rounds used to produce the given hash.
FAQs
Threaded bcrypt bindings with a small API.
We found that bcrypt-small demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.