bcryptjs - npm
bcryptjs - npm
Sign Up Sign In
bcryptjs
2.4.3 • Public • Published 5 years ago
Readme
Explore BETA
0 Dependencies
2 537 Dependents
25 Versions
bcrypt.js
Optimized bcrypt in JavaScript with zero dependencies. Compatible to the C++ bcrypt
binding on node.js and also working in the browser.
Security considerations
Besides incorporating a salt to protect against rainbow table attacks, bcrypt is an
adaptive function: over time, the iteration count can be increased to make it slower, so it
remains resistant to brute-force search attacks even with increasing computation power.
(see)
While bcrypt.js is compatible to the C++ bcrypt binding, it is written in pure JavaScript
and thus slower (about 30%), effectively reducing the number of iterations that can be
https://www.npmjs.com/package/bcryptjs 1/10
20/11/2021 22:28 bcryptjs - npm
The maximum input length is 72 bytes (note that UTF8 encoded characters use up to 4
bytes) and the length of generated hashes is 60 characters.
Usage
The library is compatible with CommonJS and AMD loaders and is exposed globally as
dcodeIO.bcrypt if neither is available.
node.js
On node.js, the inbuilt crypto module's randomBytes interface is used to obtain secure
random numbers.
Browser
In the browser, bcrypt.js relies on Web Crypto API's getRandomValues interface to obtain
secure random numbers. If no cryptographically secure source of randomness is
available, you may specify one through bcrypt.setRandomFallback.
or
require.config({
paths: { "bcrypt": "/path/to/bcrypt.js" }
});
require(["bcrypt"], function(bcrypt) {
...
});
Usage - Sync
https://www.npmjs.com/package/bcryptjs 2/10
20/11/2021 22:28 bcryptjs - npm
To hash a password:
To check a password:
Usage - Async
To hash a password:
To check a password:
Note: Under the hood, asynchronisation splits a crypto operation into small chunks. After
the completion of a chunk, the execution of the next chunk is placed on the back of JS
event loop queue, thus efficiently sharing the computational resources with the other
operations in the queue.
API
setRandomFallback(random)
Sets the pseudo random number generator to use as a fallback if neither node's crypto
module nor the Web Crypto API is available. Please note: It is highly important that the
PRNG used is cryptographically secure and that it is seeded properly!
@see http://nodejs.org/api/crypto.html
@see http://www.w3.org/TR/WebCryptoAPI/
https://www.npmjs.com/package/bcryptjs 4/10
20/11/2021 22:28 bcryptjs - npm
Hint: You might use isaac.js as a CSPRNG but you still have to make sure to seed it
properly.
genSaltSync(rounds=, seed_length=)
Synchronously generates a salt.
number |
Number of rounds to use, defaults to
rounds function(Error,
10 if omitted
string=)
number |
seed_length function(Error, Not supported.
string=)
hashSync(s, salt=)
Synchronously generates a hash for the given string.
https://www.npmjs.com/package/bcryptjs 5/10
20/11/2021 22:28 bcryptjs - npm
compareSync(s, hash)
Synchronously tests a string against a hash.
https://www.npmjs.com/package/bcryptjs 6/10
20/11/2021 22:28 bcryptjs - npm
getRounds(hash)
Gets the number of rounds used to encrypt the specified hash.
getSalt(hash)
https://www.npmjs.com/package/bcryptjs 7/10
20/11/2021 22:28 bcryptjs - npm
Gets the salt portion from a hash. Does not validate the hash.
Command line
Usage: bcrypt <input> [salt]
Downloads
Distributions
ZIP-Archive
Tarball
Credits
Based on work started by Shane Girish at bcrypt-nodejs (MIT-licensed), which is itself
based on javascript-bcrypt (New BSD-licensed).
License
New-BSD / MIT (see)
Keywords
https://www.npmjs.com/package/bcryptjs 8/10
20/11/2021 22:28 bcryptjs - npm
Install
npm i bcryptjs
Repository
github.com/dcodeIO/bcrypt.js
Homepage
github.com/dcodeIO/bcrypt.js#readme
Weekly Downloads
1 150 695
Version License
2.4.3 MIT
Last publish
5 years ago
Collaborators
Try on RunKit
Report malware
https://www.npmjs.com/package/bcryptjs 9/10
20/11/2021 22:28 bcryptjs - npm
Support
Help
Community
Advisories
Status
Contact npm
Company
About
Blog
Press
Policies
Terms of Use
Code of Conduct
Privacy
https://www.npmjs.com/package/bcryptjs 10/10