NodeJs implementation o PBKDF2 Hash to generate and check AspNet Identity password
npm install pbkdf2-jssh
$ npm i -g pbkdf2-js
`
#### Creating a Hash from a plain String
`js
var crypt = require("./lib/pbkdf2.min");
var passPlain = "testMyPass";
var hashed = crypt.hashPassword(passPlain, function (nullable, hashed) {
console.log(hashed);
});
`
#### Checking validate of a plain pass with a hashed
`js
var crypt = require("./lib/pbkdf2.min");
var isValid = crypt.verifyPassword(passPlain, hashed, function (nullable, result) {
console.log("Is same? " + result);
});
``