Hash a password with a manually generated salt.
by rossmccrann ยท 8/4/2022
1
import bcrypt from "bcryptjs@2";
2
3
export async function main(password: string, salt_num: number) {
4
const salt = await bcrypt.genSalt(salt_num);
5
const hash_pass = await bcrypt.hash(password, salt);
6
7
return hash_pass;
8
}
9
import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";