mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
18 lines
418 B
TypeScript
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);
|
|
}
|
|
}
|