1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/model/PasswordHelper.ts
2018-11-28 23:49:33 +01:00

18 lines
418 B
TypeScript

let bcrypt: any;
try {
bcrypt = require('bcrypt');
} catch (err) {
bcrypt = require('bcryptjs');
}
export class PasswordHelper {
public static cryptPassword(password: string) {
const salt = bcrypt.genSaltSync(9);
return bcrypt.hashSync(password, salt);
}
public static comparePassword(password: string, encryptedPassword: string) {
return bcrypt.compareSync(password, encryptedPassword);
}
}