Esta es la contestación más válida que te podemos dar, pero estúdiala pausadamente y analiza si se puede adaptar a tu proyecto.
Ejemplo 1: cómo hacer hash de la contraseña en el nodo js
npm i bcrypt
const bcrypt = require('bcrypt');
async function hashIt(password)
const salt = await bcrypt.genSalt(6);
const hashed = await bcrypt.hash(password, salt);
hashIt(password);
// compare the password user entered with hashed pass.
async function compareIt(password)
const validPassword = await bcrypt.compare(password, hashedPassword);
compareIt(password);
Ejemplo 2: npm bcrypt
npminstall bcrypt
Ejemplo 3: bcryptjs
npm i bcryptjs
# yarnyarnadd bcryptjs
Ejemplo 4: formidable ejemplo de nodejs
// make this a middleware function,
// then put it on the route like you used jwt,
// then get the value with req.users.
const IncomingForm = require('formidable')
const resolve = require('path')
const existsSync, writeFileSync = require('fs')
module.exports =(req, res, next)=>
const form = new IncomingForm(
maxFileSize: 1 * 1024 * 1024,
keepExtensions: true)
form.parse(req, (error, fields, file)=>gif)
Ejemplo 5: bcrypt compara hash y contraseña
var bcrypt = dcodeIO.bcrypt;
/** One way, can't decrypt but can compare */
var salt = bcrypt.genSaltSync(10);
/** Encrypt password */
bcrypt.hash('anypassword', salt, (err, res) =>
console.log('hash', res)
hash = res
compare(hash)
);
/** Compare stored password with new encrypted password */
function compare(encrypted)
bcrypt.compare('aboveusedpassword', encrypted, (err, res) =>
// res == true or res == false
console.log('Compared result', res, hash)
)
// If u want do the same with NodeJS use this:
/* var bcrypt = require('bcryptjs') */
Comentarios y valoraciones
Al final de la página puedes encontrar las críticas de otros creadores, tú asimismo puedes dejar el tuyo si te gusta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)