Horje
Algorithm used by strapi for password Code Example
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);





Javascript

Related
how to create tabs in php Code Example how to create tabs in php Code Example
JavaScript prompt hello name Code Example JavaScript prompt hello name Code Example
for (var i = 0 i 5 i++) settimeout(function() console.log(i) ) Code Example for (var i = 0 i 5 i++) settimeout(function() console.log(i) ) Code Example
close alert after 5 seconds javascript Code Example close alert after 5 seconds javascript Code Example
how to get the current time of a audio in js Code Example how to get the current time of a audio in js Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15