restyjs-graveyard / argon2

Password hashing and validation module for resty.js.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@restyjs/argon2

Password hashing and validation module for resty.js.

import { hash, verify } from "@restyjs/argon2";

// hash plain password
const result = await hash("foobar");

// verify password
const isVerified = await verify(result.password, "foobar")

About

Password hashing and validation module for resty.js.

License:MIT License


Languages

Language:TypeScript 100.0%