Hash a password with a randomly generated salt.
1
import * as bcrypt from "https://deno.land/x/bcrypt@v0.2.4/mod.ts";
2
3
export async function main(password: string) {
4
const salt = await bcrypt.genSalt();
5
const hash_pass = await bcrypt.hash(password, salt);
6
7
return hash_pass;
8
}
9