Edits history of script submission #86 for ' Hash Password with Random Salt (helper)'

  • deno
    One script reply has been approved by the moderators
    Ap­pro­ved
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt();
      const hash_pass = await bcrypt.hash(password, salt);
    
      return hash_pass;
    }
    

    Submitted by hugo697 368 days ago

  • deno
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt();
      const hash_pass = await bcrypt.hash(password, salt);
    
      return hash_pass;
    }
    

    Submitted by admin 1000 days ago

  • deno
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt();
      const hash_pass = await bcrypt.hash(password, salt);
    
    	return hash_pass;
    }

    Submitted by admin 1003 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt();
      const hash_pass = await bcrypt.hash(password, salt);
    
    	return hash_pass;
    }

    Submitted by adam186 1132 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt();
      const hash_pass = await bcrypt.hash(password, salt);
    
    	return hash_pass;
    }

    Submitted by adam186 1166 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt();
      const hash_pass = await bcrypt.hash(password, salt);
    
    	return hash_pass;
    }

    Submitted by rossmccrann 1374 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import * as bcrypt from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(password: string) {
      const salt = await bcrypt.genSalt(salt_num);
      const hash_pass = await bcrypt.hash(password, salt);
    
    	return hash_pass;
    }

    Submitted by rossmccrann 1374 days ago