Coder Social home page Coder Social logo

bcrypt-rust-wasm's Introduction

bcrypt-wasm-rust

Optimized bcrypt implementation in WASM, written in rust.

npm version


Functionalities

  • Hash passwords
  • Custom rounds for salt
  • Verify hashed passwords
  • Faster than the pure JS implementation

Instructions to run

  • Pre-requisites:
    • NPM

Installation with NPM

npm i -s bcrypt-rust-wasm

Usage

This library is currently compatible with NodeJS and supports the synchronous bindings only.

Importing

const { Bcrypt } = require('bcrypt-rust-wasm');
...

Obtaining an instance

// Get a bcrypt instance with a default number of seed rounds
const bcryptDefault = Bcrypt.default();

// Get a bcrypt instance with a specified number of seed rounds
const bcrypt = Bcrypt.new(10);

Hashing

const hash = bcrypt.hashSync('password'); 
// hash: "$2b$04$fsiGFAMtgNJ8YIszhoxusObEgoLF.faqMIKXiRDp5GZbzFWzebgcu"

Verifying a hash

bcrypt.verifySync("password", hash) // true
bcrypt.verifySync("password123", hash) // false

Building from source

How to build in release mode

# Builds the project and places it into the `pkg` folder.
npm run build

Dependencies for building

Contributors

  • @ATechnoHazard - for the implementation
  • @L04DB4L4NC3R - for the idea


Made with ❤️ by DSC VIT

bcrypt-rust-wasm's People

Contributors

dependabot[bot] avatar geek-ubaid avatar l04db4l4nc3r avatar sphericalkat avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bcrypt-rust-wasm's Issues

Update the readme

The readme has to be updated. In the verification of password, it should be verifySync instead of verify.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.