NodeJS package for hash/validate passwords using the .NET PasswordHasher algorithm.
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
npm install --save dotnet-password-hasher
npm test