本文整理汇总了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);
}
开发者ID:Norestlabs-Mariya,项目名称:backend-ico-dashboard,代码行数:26,代码来源:kyc.client.ts
示例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;
}
开发者ID:Blocklevel,项目名称:contoso-express,代码行数:32,代码来源:user.ts
示例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(''));
}
})
开发者ID:roderickmonk,项目名称:rod-monk-sample-repo-ng2,代码行数:9,代码来源:Server.ts
示例4: function
userSchema.pre('save', function(next) {
let user = this;
if(!user.isModified('password')){
return next();
}
user.password = bcrypt.hashSync(user.password);
return next();
});
开发者ID:BartoszSiemienczuk,项目名称:teamsuite,代码行数:9,代码来源:user.ts
示例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
});
开发者ID:roderickmonk,项目名称:rod-monk-sample-repo-ng2,代码行数:10,代码来源:DB.ts
示例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;
}
}
开发者ID:pteyssedre,项目名称:lazy-uac,代码行数:12,代码来源:models.ts
示例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();
},
开发者ID:csgpro,项目名称:csgpro.com,代码行数:13,代码来源:user.model.ts
示例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) => {
开发者ID:zzeneg,项目名称:NodeSimpleWebsite,代码行数:16,代码来源:passport.ts
示例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()
})
开发者ID:yeegr,项目名称:SingularJS,代码行数:16,代码来源:ConsumerModel.ts
注:本文中的bcrypt-nodejs.hashSync函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论