Socket
Book a DemoInstallSign in
Socket

pswd

Package Overview
Dependencies
Maintainers
5
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pswd

Hash and compare passwords with pbkdf2

latest
Source
npmnpm
Version
3.0.3
Version published
Maintainers
5
Created
Source

pswd

NPM version Build status Test coverage Dependency Status License Downloads

Similar to pwd. Designed with promises for cleaner code, especially with generators. Also, pwd doesn't actually work with generators, and I'm too lazy to fix it. bcrypt also doesn't support node 0.11 yet :( but not installing C/C++ addons to do password hashing is always nice.

  • Supports changing passwords with different iterations and lengths
  • Returns a single string like bcrypt

API

var pswd = require('pswd')([options])

These options can also be set and changed by doing pswd[option] = Integer.

  • length <128> - salt and pbkdf2 byte length
  • iterations <12000> - pbkdf2 iteration count

pswd.hash(password, [salt], [iterations], [length]).then( hash => )

Creates a hash from the password with optional salt, iterations, and length arguments (used for comparision).

pswd.compare(password, hash).then( okay => )

Compare a password with a hash. okay is a Boolean.

Keywords

pbkdf2

FAQs

Package last updated on 23 Nov 2017

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