项目作者: williamtayeb

项目描述 :
NodeJS implementation of .NET Core Identity Password Hasher
高级语言: TypeScript
项目地址: git://github.com/williamtayeb/aspnetcore-identity-password-hasher.git
创建时间: 2019-02-05T09:03:04Z
项目社区:https://github.com/williamtayeb/aspnetcore-identity-password-hasher

开源协议:MIT License

下载


A useful library incase you are migrating user data including hashed passwords from a .NET Core stack to Node.js. Provides a Node.js implementation of ASP.NET Core Identity’s Password Hasher including verification support for both V2 and V3.

Getting Started

Install the package using yarn:

  1. yarn add aspnetcore-identity-password-hasher

Or npm:

  1. npm install aspnetcore-identity-password-hasher

Usage

  1. const identity = require('aspnetcore-identity-password-hasher');

Generating a password hash:

Uses the V3 method to generate a password hash. See the note below if you are interested in using the old V2 method.

  1. const password = 'example';
  2. identity.hash(password).then(hashedPassword => {
  3. // Store the hashed password
  4. });

Verifying plain text password with associated hash:

Is able to verify both V2 and V3 hashes since the format type is included within the payload of the hash.

  1. identity.verify(password, hashedPassword).then(res => {
  2. // res is true if the plain text password matches with the hash
  3. // otherwise false.
  4. });

Note

The original PasswordHasher class from .NET Core has been completely ported and is available in src/PasswordHasher.ts. The class includes explicit method for generating V2 password hashes.