1.0.0 • Published 3 years ago

password-hashing-entreprenerd v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

password-hashing

A simple package to hash passwords and verify if the password and the hash match

Installation

yarn add password-hashing

## Usage

import { validatePassword, hashPassword } from "password-hashing"

const { hash, salt } = hashPassword("YOUR PASSWORD")

const isValid = validatePassword("YOUR PASSWORD", salt, hash) // Is the password valid?

Functions

Typedefs

validatePassword(inputPassword, salt, storedHash) ⇒ boolean

Given an input password a salt and an hash Does the given password match with the hash?

Kind: global function
Returns: boolean - does hash(inputPassword + salt) === storedHash?

ParamType
inputPasswordstring
saltstring
storedHashstring

hashPassword(password) ⇒ HashAndSalt

Given a Password, hash it with a salt, then return the hash and the salt

Kind: global function
Returns: HashAndSalt - object containing the hash and the salt used

ParamType
passwordstring

HashAndSalt : Object

Kind: global typedef
Properties

NameTypeDescription
hashstringThe hash we got
saltstringThe salt used to hash