Hash delle password in Bun

Mattepuffo's logo
Hash delle password in Bun

Hash delle password in Bun

Bun ha già integrate tutte le funzioni che ci occorrono per l'hash delle password.

In questo articolo vediamo un paio di esempi, sia di hashing che di verifica.

Questo il codice:

const password = "password";

const hash = await Bun.password.hash(password);
const check = await Bun.password.verify(password, hash);
console.log(hash);
console.log(check);

console.log("-----");

const bcryptHash = await Bun.password.hash(password, {
  algorithm: "bcrypt",
  cost: 13,
});
const checkBcrypt = await Bun.password.verify(password, bcryptHash);

console.log(bcryptHash);
console.log(checkBcrypt);

Enjoy!


Condividi

Commentami!