Answers for "Algorithm used by strapi for password"

0

Algorithm used by strapi for password

const bcrypt = require('bcryptjs');



const hashPassword = async password => await bcrypt.hash(password, 10);

const validatePassword = async (password, hash) => await bcrypt.compare(password, hash);
Posted by: Guest on July-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language