New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

nodejs-pbkdf2

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodejs-pbkdf2

Encrypt and Verify PBKDF2 based on PBKDF2 Node Js and Crypto Node Js

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

PBKDF2 Node JS

Build Status

Usage

  • Install first
$ npm install nodejs-pbkdf2
  • Set up the config:
let config = {
  digestAlgorithm: 'sha1',
  keyLen: 64,
  saltSize: 64,
  iterations: 15000
};
  • Hashing a Password
'use strict';

const Pbkdf2 = require('nodejs-pbkdf2');


const config = {
  digestAlgorithm: 'sha1',
  keyLen: 64,
  saltSize: 64,
  iterations: 15000
};

let pbkdf2 = new Pbkdf2(config);

pbkdf2.hashPassword('12345', (err, cipherText, salt) => {
  console.log(cipherText);
  console.log(salt);
});

  • Verify a Password
'use strict';

const Pbkdf2 = require('nodejs-pbkdf2');


const config = {
  digestAlgorithm: 'sha1',
  keyLen: 64,
  saltSize: 64,
  iterations: 15000
};

let pbkdf2 = new Pbkdf2(config);

pbkdf2.hashPassword('12345', (err, cipherText, salt) => {
  pbkdf2.isValidPassword('12345', cipherText, salt).then((isValid) => {
    console.log(isValid);
  });
});

How to Contribute

  • Fork first
  • Clone to your local machine
$ git clone https://github.com/<your-github-username>/nodejs-pbkdf2.git
  • Install dependencies
$ npm install
  • Create a new branch
$ git checkout -b feature/your-feature-branch
  • Run test
$ npm test
  • Push to your repository
$ git push -u origin feature/your-feature-branch
  • Hit the Pull Request

Keywords

pbkdf2

FAQs

Package last updated on 06 Jul 2021

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