1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/backend/model/PasswordHelper.ts

17 lines
420 B
TypeScript
Raw Normal View History

2021-01-04 18:11:55 +08:00
import * as bcrypt from 'bcrypt';
2017-07-10 04:36:25 +08:00
export class PasswordHelper {
2020-01-08 05:17:54 +08:00
public static cryptPassword(password: string): string {
2017-07-19 16:21:52 +08:00
const salt = bcrypt.genSaltSync(9);
return bcrypt.hashSync(password, salt);
2017-07-10 04:36:25 +08:00
}
2020-01-08 05:17:54 +08:00
public static comparePassword(password: string, encryptedPassword: string): boolean {
try {
return bcrypt.compareSync(password, encryptedPassword);
} catch (e) {
}
return false;
2017-07-10 04:36:25 +08:00
}
}