• Stars
    star
    3,300
  • Rank 13,595 (Top 0.3 %)
  • Language
    JavaScript
  • License
    Other
  • Created over 11 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Optimized bcrypt in plain JavaScript with zero dependencies.

bcrypt.js

Optimized bcrypt in JavaScript with zero dependencies. Compatible to the C++ bcrypt binding on node.js and also working in the browser.

build static donate ❤

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 processed in an equal time span.

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.

npm install bcryptjs

var bcrypt = require('bcryptjs');
...

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.

var bcrypt = dcodeIO.bcrypt;
...

or

require.config({
    paths: { "bcrypt": "/path/to/bcrypt.js" }
});
require(["bcrypt"], function(bcrypt) {
    ...
});

Usage - Sync

To hash a password:

var bcrypt = require('bcryptjs');
var salt = bcrypt.genSaltSync(10);
var hash = bcrypt.hashSync("B4c0/\/", salt);
// Store hash in your password DB.

To check a password:

// Load hash from your password DB.
bcrypt.compareSync("B4c0/\/", hash); // true
bcrypt.compareSync("not_bacon", hash); // false

Auto-gen a salt and hash:

var hash = bcrypt.hashSync('bacon', 8);

Usage - Async

To hash a password:

var bcrypt = require('bcryptjs');
bcrypt.genSalt(10, function(err, salt) {
    bcrypt.hash("B4c0/\/", salt, function(err, hash) {
        // Store hash in your password DB.
    });
});

To check a password:

// Load hash from your password DB.
bcrypt.compare("B4c0/\/", hash, function(err, res) {
    // res === true
});
bcrypt.compare("not_bacon", hash, function(err, res) {
    // res === false
});

// As of bcryptjs 2.4.0, compare returns a promise if callback is omitted:
bcrypt.compare("B4c0/\/", hash).then((res) => {
    // res === true
});

Auto-gen a salt and hash:

bcrypt.hash('bacon', 8, function(err, hash) {
});

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!

Parameter Type Description
random function(number):!Array.<number> Function taking the number of bytes to generate as its sole argument, returning the corresponding array of cryptographically secure random byte values.
@see http://nodejs.org/api/crypto.html
@see http://www.w3.org/TR/WebCryptoAPI/

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.

Parameter Type Description
rounds number Number of rounds to use, defaults to 10 if omitted
seed_length number Not supported.
@returns string Resulting salt
@throws Error If a random fallback is required but not set

genSalt(rounds=, seed_length=, callback)

Asynchronously generates a salt.

Parameter Type Description
rounds number | function(Error, string=) Number of rounds to use, defaults to 10 if omitted
seed_length number | function(Error, string=) Not supported.
callback function(Error, string=) Callback receiving the error, if any, and the resulting salt
@returns Promise If callback has been omitted
@throws Error If callback is present but not a function

hashSync(s, salt=)

Synchronously generates a hash for the given string.

Parameter Type Description
s string String to hash
salt number | string Salt length to generate or salt to use, default to 10
@returns string Resulting hash

hash(s, salt, callback, progressCallback=)

Asynchronously generates a hash for the given string.

Parameter Type Description
s string String to hash
salt number | string Salt length to generate or salt to use
callback function(Error, string=) Callback receiving the error, if any, and the resulting hash
progressCallback function(number) Callback successively called with the percentage of rounds completed (0.0 - 1.0), maximally once per MAX_EXECUTION_TIME = 100 ms.
@returns Promise If callback has been omitted
@throws Error If callback is present but not a function

compareSync(s, hash)

Synchronously tests a string against a hash.

Parameter Type Description
s string String to compare
hash string Hash to test against
@returns boolean true if matching, otherwise false
@throws Error If an argument is illegal

compare(s, hash, callback, progressCallback=)

Asynchronously compares the given data against the given hash.

Parameter Type Description
s string Data to compare
hash string Data to be compared to
callback function(Error, boolean) Callback receiving the error, if any, otherwise the result
progressCallback function(number) Callback successively called with the percentage of rounds completed (0.0 - 1.0), maximally once per MAX_EXECUTION_TIME = 100 ms.
@returns Promise If callback has been omitted
@throws Error If callback is present but not a function

getRounds(hash)

Gets the number of rounds used to encrypt the specified hash.

Parameter Type Description
hash string Hash to extract the used number of rounds from
@returns number Number of rounds used
@throws Error If hash is not a string

getSalt(hash)

Gets the salt portion from a hash. Does not validate the hash.

Parameter Type Description
hash string Hash to extract the salt from
@returns string Extracted salt part
@throws Error If hash is not a string or otherwise invalid

Command line

Usage: bcrypt <input> [salt]

If the input has spaces inside, simply surround it with quotes.

Downloads

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)

More Repositories

1

long.js

A Long class for representing a 64-bit two's-complement integer value.
JavaScript
854
star
2

webassembly

A minimal toolkit and runtime to produce and run WebAssembly modules.
C
814
star
3

PSON

A super efficient binary serialization format for JSON.
JavaScript
459
star
4

ClosureCompiler.js

Closure Compiler for node.js - the all-round carefree package.
JavaScript
143
star
5

MetaScript

Sophisticated meta programming in JavaScript, e.g. to build different versions of a library from a single source tree.
JavaScript
134
star
6

node.js-closure-compiler-externs

node.js externs for use with Closure Compiler.
JavaScript
76
star
7

Preprocessor.js

A JavaScript source file preprocessor in pure JavaScript, e.g. to build different versions of a library.
JavaScript
70
star
8

node-memcpy

Copies data between node Buffers and/or ArrayBuffers up to ~75 times faster than in pure JS.
JavaScript
54
star
9

utfx

A compact library to encode, decode and convert UTF8 / UTF16 in JavaScript.
JavaScript
53
star
10

btree.js

A ridiculously lean B-tree of variable orders in plain JavaScript.
JavaScript
45
star
11

WebAssembly-prototype

[OUTDATED] JavaScript tools for working with WebAssembly (WASM) binaries.
JavaScript
41
star
12

colour.js

A cored, fixed, documented and optimized version of the popular `colors.js`: Get colors in your node.js console like what...
JavaScript
33
star
13

node-harmonize

Enables --harmony flags programmatically.
JavaScript
25
star
14

BattleCon

A Battlefield / Frostbite engine RCON layer on node.js.
JavaScript
20
star
15

WebRcon

RCON over WebSocket client library and command line interface.
JavaScript
18
star
16

setup-node-nvm

Set up your GitHub Actions workflow with a specific version of node.js using nvm.
JavaScript
16
star
17

grunt-closurecompiler

The ClosureCompiler.js Grunt Task
JavaScript
15
star
18

test.js

A compact testing module for node.js.
JavaScript
14
star
19

dcodeio.github.io

JavaScript
13
star
20

purerc

JavaScript
12
star
21

IntN.js

A library for representing arbitrary byte size integers in JavaScript, both signed and unsigned.
JavaScript
12
star
22

JustMath.js

A rich toolset for two dimensional vector math.
JavaScript
11
star
23

opt.js

Probably the sole command line option parser you'll ever need to...
JavaScript
10
star
24

SharpJS

An embeddable, node.js-like JavaScript environment for Mono and .NET.
C#
10
star
25

lxiv

A compact library to encode and decode base64 data in JavaScript.
JavaScript
10
star
26

___wildcards

A party game for horrible people.
JavaScript
9
star
27

asc-native

AssemblyScript, JavaScript, WebAssembly, C, Binaryen, WABT, Clang, LLVM, CMake, Node.js, Visual Studio and Win32 walk into a bar...
C
9
star
28

ascli

A uniform foundation for unobtrusive (ASCII art in) cli apps.
JavaScript
9
star
29

wapi

A minimal yet viable Web-first Wasm/JS bridge.
TypeScript
7
star
30

quickjs

C
7
star
31

endecrypt

Password based en-/decryption of arbitrary data with and for node.js. http://dcode.io
JavaScript
5
star
32

node-BufferView

A DataView for node Buffers.
JavaScript
5
star
33

FalseSkill

A literal implementation of the Glicko-2 rating system in TypeScript.
JavaScript
4
star
34

doco

A JavaScript Documentation Generator.
JavaScript
4
star
35

PSONSharp

An implementation of Protocol JSON for .NET and Mono.
C#
4
star
36

SourceCon

Simple SRCDS RCON for node.js
JavaScript
3
star
37

BPlusTree.js

Santanu Basu's B+ tree implementation. Streamlined.
JavaScript
3
star
38

esm2umd

Transforms ESM to UMD, i.e. to use ESM by default with UMD as a legacy fallback.
JavaScript
2
star
39

SourceQry

JavaScript
1
star
40

raytrace

TypeScript
1
star
41

Friends

Universal friends plugin for the Oxide modding framework.
C#
1
star
42

llvm.js

C
1
star
43

asext

JavaScript
1
star