Skip to content

NodeJS package for hash/validate passwords using the .NET PasswordHasher algorithm.

Notifications You must be signed in to change notification settings

pnicorelli/dotnet-password-hasher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.NET PasswordHasher Class APIs for NodeJS

NodeJS package for hash/validate passwords using the .NET PasswordHasher algorithm.

Usage

var dotnetPasswordHasher = require('dotnet-password-hasher');

//#### Hash a password
let hash = dotnetPasswordHasher.HashPassword('CorrectHorseBatteryStaple');
// return string

//#### Verify a password
dotnetPasswordHasher.VerifyHashedPassword('CorrectHorseBatteryStaple', hash);
// return true false

Install

npm install --save dotnet-password-hasher

Test

npm test

About

NodeJS package for hash/validate passwords using the .NET PasswordHasher algorithm.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published