Socket
Socket
Sign inDemoInstall

@types/bcryptjs

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/bcryptjs

TypeScript definitions for bcryptjs


Version published
Weekly downloads
650K
increased by1.81%
Maintainers
1
Weekly downloads
 
Created

What is @types/bcryptjs?

@types/bcryptjs provides TypeScript type definitions for the bcryptjs library, which is used for hashing passwords and comparing hashed passwords.

What are @types/bcryptjs's main functionalities?

Hashing a Password

This feature allows you to hash a plaintext password using bcryptjs. The `hash` function takes a plaintext password and a salt round value, and returns a hashed password.

const bcrypt = require('bcryptjs');
const saltRounds = 10;
const myPlaintextPassword = 's0/\P4$$w0rD';
bcrypt.hash(myPlaintextPassword, saltRounds, function(err, hash) {
  if (err) throw err;
  console.log(hash);
});

Comparing a Password

This feature allows you to compare a plaintext password with a hashed password to check if they match. The `compare` function returns a boolean indicating whether the passwords match.

const bcrypt = require('bcryptjs');
const myPlaintextPassword = 's0/\P4$$w0rD';
const hash = '$2a$10$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36z4u/2eWvJ1p6d7y6J0bWm';
bcrypt.compare(myPlaintextPassword, hash, function(err, res) {
  if (err) throw err;
  console.log(res); // true or false
});

Generating a Salt

This feature allows you to generate a salt, which can be used for hashing passwords. The `genSalt` function takes a salt round value and returns a generated salt.

const bcrypt = require('bcryptjs');
const saltRounds = 10;
bcrypt.genSalt(saltRounds, function(err, salt) {
  if (err) throw err;
  console.log(salt);
});

Other packages similar to @types/bcryptjs

FAQs

Package last updated on 19 Sep 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc