本文整理汇总了TypeScript中bcrypt-nodejs.hashSync函数的典型用法代码示例。如果您正苦于以下问题:TypeScript hashSync函数的具体用法?TypeScript hashSync怎么用?TypeScript hashSync使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了hashSync函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: init
async init(investor: Investor): Promise<KycInitResult> {
const id = investor.id.toHexString();
const hash = base64encode(bcrypt.hashSync(id + config.kyc.apiSecret));
const kycOptions = {
baseUrl: this.baseUrl,
method: 'POST',
auth: {
user: this.apiToken,
password: this.apiSecret
},
headers: {
'User-Agent': 'JINCOR ICO/1.0.0'
},
body: {
merchantIdScanReference: uuid.v4(),
successUrl: `${ config.app.apiUrl }/kyc/uploaded/${ id }/${ hash }`,
errorUrl: `${ config.app.frontendUrl }/dashboard/verification/failure`,
callbackUrl: `${ config.app.apiUrl }/kyc/callback`,
customerId: investor.email,
authorizationTokenLifetime: this.defaultTokenLifetime
}
};
return await request.json<KycInitResult>('/initiateNetverify', kycOptions);
}
示例2: init
export function init(sequelize, DataTypes) {
let fields = {
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
email: {
type: DataTypes.STRING
},
profile: {
type: DataTypes.JSON //local, google, facebook
}
};
let options = {
classMethods: {
generateHash(password) {
return bcrypt.hashSync(password, bcrypt.genSaltSync(8), null);
},
},
instanceMethods: {
getFullName() {
return `${this.lastName}, ${this.firstName}`;
}
}
};
let model = helper.defineModel('user', fields, options, sequelize);
return model;
}
示例3: next
.then(valid => {
if (valid) {
DB.persistMemberChange(_id, { password: bcrypt.hashSync(request.body.first) })
.then(() => response.end())
.catch(next);
} else {
next(new Err.AuthenticationError(''));
}
})
示例4: function
userSchema.pre('save', function(next) {
let user = this;
if(!user.isModified('password')){
return next();
}
user.password = bcrypt.hashSync(user.password);
return next();
});
示例5: RegExp
export const activateAccount = (member: MemberInterface): Promise<any> =>
MemberModel.findOneAndUpdate(
{
firstname: { $in: new RegExp(`^${member.firstname}$`, 'i') },
emailaddress: { $in: new RegExp(`^${member.emailaddress}$`, 'i') },
},
{
password: bcrypt.hashSync(member.password),
activated: true
});
示例6: AddPasswordSync
AddPasswordSync(password: string): void {
if (password) {
let it = this;
let round = (Math.floor(Math.random() * 10) + 1);
Log.d("User", "AddPasswordSync", "Generating SaltSync", round);
let salt = bcript.genSaltSync(round);
Log.d("User", "AddPasswordSync", "Generating HashSync", salt);
let hash = bcript.hashSync(password, salt);
Log.d("User", "AddPasswordSync", "password encrypted", hash);
it.Password = hash;
}
}
示例7: setPasswordFn
setPassword: function setPasswordFn(password: string) {
const self: IUserInstance = this;
if (!password) {
throw new Error('Password Can\'t Be Null!');
}
const salt = bcrypt.genSaltSync();
const encrypted = bcrypt.hashSync(password, salt);
self.setDataValue('password', encrypted);
return self.save();
},
示例8: done
.then((user) => {
if (user) {
// if the user is already exist
return done(null, false, { message: "The user is already exist" });
}
var newUser = new User();
newUser.email = email;
newUser.password = bcrypt.hashSync(password);
newUser.save().then((user) => {
return done(null, user);
}, (err) => {
throw err;
});
}, (err) => {
示例9: function
ConsumerSchema.pre('save', function(next: Function): void {
let user = this
if (user.isModified('password')) {
// generate a salt then run callback
let salt = bcrypt.genSaltSync(CONFIG.USER_SALT_LENGTH)
user.password = bcrypt.hashSync(user.password, salt)
user.updated = UTIL.getTimestamp()
}
if (user.isNew) {
user.wasNew = user.isNew
}
next()
})