You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pizza.krasnikov.pro/.history/components/admin/function/hashPassword_20220520143020.ts

13 lines
498 B

var crypto = require('crypto');
export const HashPassword: React.FC = (password:string, salt:string, callback: () => void) => {
crypto.pbkdf2(password, this.salt, 1000, 32, function(err, buff) {
if (err) return cb(err);
cb(null, buff.toString('hex'));
});
crypto.pbkdf2(password, salt, 100000, 64, 'sha512', (err: string, derivedKey: string) => {
if (err) throw err;
// Printing the derived key
callback(derivedKey.toString('hex'));
});
}