1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/backend/model/PasswordHelper.ts

18 lines
418 B
TypeScript
Raw Normal View History

2018-11-28 23:49:33 +01:00
let bcrypt: any;
2017-07-19 10:21:52 +02:00
try {
2018-03-30 15:30:30 -04:00
bcrypt = require('bcrypt');
2017-07-19 10:21:52 +02:00
} catch (err) {
2018-03-30 15:30:30 -04:00
bcrypt = require('bcryptjs');
2017-07-19 10:21:52 +02:00
}
2017-07-09 22:36:25 +02:00
export class PasswordHelper {
2018-11-28 23:49:33 +01:00
public static cryptPassword(password: string) {
2017-07-19 10:21:52 +02:00
const salt = bcrypt.genSaltSync(9);
return bcrypt.hashSync(password, salt);
2017-07-09 22:36:25 +02:00
}
2018-11-28 23:49:33 +01:00
public static comparePassword(password: string, encryptedPassword: string) {
2017-07-19 10:21:52 +02:00
return bcrypt.compareSync(password, encryptedPassword);
2017-07-09 22:36:25 +02:00
}
}