1
Hash Password with Random Salt
One script reply has been approved by the moderators Verified

Hash a password with a randomly generated salt.

Created by rossmccrann 632 days ago Viewed 6240 times
0
Submitted by rossmccrann Deno
Verified 632 days ago
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