Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 492 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 492 Bytes

bcrypt-wasm

WebAssembly version of bcrypt for Node environments

Build

$ make

Usage

$ yarn add bcrypt-fast
const bcrypt = require("bcrypt-fast");

const start = process.hrtime();

const password = "test";

const hashA = bcrypt.hash(
    password,
    4,
);

const hashB = bcrypt.hash(
    password,
    4,
);

assert(hashA !== hashB);

assert(bcrypt.verify(
    password,
    hashA,
));

assert(bcrypt.verify(
    password,
    hashB,
));