2017-07-19 16:21:52 +08:00
|
|
|
let bcrypt;
|
|
|
|
try {
|
2018-03-31 03:30:30 +08:00
|
|
|
bcrypt = require('bcrypt');
|
2017-07-19 16:21:52 +08:00
|
|
|
} catch (err) {
|
2018-03-31 03:30:30 +08:00
|
|
|
bcrypt = require('bcryptjs');
|
2017-07-19 16:21:52 +08:00
|
|
|
}
|
2017-07-10 04:36:25 +08:00
|
|
|
|
|
|
|
export class PasswordHelper {
|
2017-07-11 15:01:59 +08:00
|
|
|
public static cryptPassword(password) {
|
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
|
|
|
}
|
|
|
|
|
2017-07-11 15:01:59 +08:00
|
|
|
public static comparePassword(password, encryptedPassword) {
|
2017-07-19 16:21:52 +08:00
|
|
|
return bcrypt.compareSync(password, encryptedPassword);
|
2017-07-10 04:36:25 +08:00
|
|
|
}
|
|
|
|
}
|