Socket
Socket
Sign inDemoInstall

@types/bcrypt

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/bcrypt

TypeScript definitions for bcrypt


Version published
Weekly downloads
861K
increased by6.22%
Maintainers
1
Weekly downloads
 
Created

What is @types/bcrypt?

@types/bcrypt provides TypeScript type definitions for the bcrypt library, which is used for hashing passwords and comparing hashed passwords. This package allows TypeScript developers to use bcrypt with type safety.

What are @types/bcrypt's main functionalities?

Hashing a password

This feature allows you to hash a plaintext password using bcrypt. The `saltRounds` parameter determines the cost factor, which influences the time needed to calculate a single bcrypt hash.

const bcrypt = require('bcrypt');
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 see if they match. It returns a boolean indicating whether the passwords match.

const bcrypt = require('bcrypt');
const myPlaintextPassword = 's0/\/\/P4$$w0rD';
const hash = '$2b$10$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36Q5l8/3z6F5d7b5J8y1Z1K';
bcrypt.compare(myPlaintextPassword, hash, function(err, result) {
  if (err) throw err;
  console.log(result); // true or false
});

Generating a salt

This feature allows you to generate a salt, which can then be used to hash a password. The `saltRounds` parameter determines the complexity of the salt.

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

Other packages similar to @types/bcrypt

FAQs

Package last updated on 14 Jul 2016

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