Skip to content

Instantly share code, notes, and snippets.

@robozavri
Last active September 10, 2020 09:06
Show Gist options
  • Save robozavri/03479f1980b32a85ebc4eb9d828ecdfc to your computer and use it in GitHub Desktop.
Save robozavri/03479f1980b32a85ebc4eb9d828ecdfc to your computer and use it in GitHub Desktop.
#node.js bcrypt
import { hashSync, compareSync } from 'bcrypt-nodejs';
export function generateHash(data: any) {
return hashSync(data, undefined);
}
export function compareHash(data: any, hash: any) {
return compareSync(data, hash);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment