gpt4 book ai didi

node.js - Sequelize : How to compare my decrypted values with req. 正文

转载 作者:行者123 更新时间:2023-12-03 22:24:29 25 4
gpt4 key购买 nike

我正在尝试找到他们的 mobilenumber = req.body.mobilenumber 的用户。我的问题是我的数据库中的手机号码字段是加密的。
当我用户在前端输入他们的手机号码时,我如何实现我在我的数据库中解密手机号码并检查我的 req.body.mobilenumber。
我使用 Sequelize 作为我的 ORM。
我第一次有这个:

User.findOne({
where: {
mobilenumber: req.body.countrycode + req.body.mobilenumber,
},
}).then((user) => {
if (user) {
res
.status(400)
.send({ error: "A user with the given mobile number exists." });
return;
}
res.status(201).send(user);
});
然后我注意到我的数据库中的值已加密,因此所有手机号码都通过了,所以我尝试了以下操作,但它不起作用:
router.post(
"/",
(req, res) => {
User.findAll().then((user)=>{

console.log(user.map(x=>x.mobilenumber))

const user_mobilenumber=user.map(x=>x.mobilenumber);

const new_user =req.body.countrycode + req.body.mobilenumber;

const aes256gcm = (key) => {

const decrypt = (enc) => {
enc = Buffer.from(enc, "base64");
const iv = enc.slice(enc.length - 28, enc.length - 16);
const tag = enc.slice(enc.length - 16);
enc = enc.slice(0, enc.length - 28);
const decipher = crypto.createDecipheriv('aes-256-gcm', key, iv);
decipher.setAuthTag(tag);
let str = decipher.update(enc, null, 'utf8');
str += decipher.final('utf8');
return str;
};

return {
decrypt,
};
};

const aesCipher = aes256gcm(key);

user_mobilenumber.forEach((x)=>{
const y = aesCipher.decrypt(x)
console.log(y)

if(new_user===y){
res.status(400).send({ error: "A user with the given mobile number exists." });
}
res.status(201).send(new_user);


})

})
});
我不断收到此错误: (node:6456) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client

最佳答案

好的,我明白了,所以问题出在代码的 forEach 部分,您要发送两次响应,即

if(new_user===y){
res.status(400).send({ error: "A user with the given mobile number exists." });
}
res.status(201).send(new_user);
从第一个 if 返回或将第二个状态发送到 else 块中,即
像这样的东西
for (const x of user_mobilenumber) {
const y = aesCipher.decrypt(x);
console.log(y);
if (new_user === y) {
res.status(400).send({ error: "A user with the given mobile number exists." });
return;
}
}

res.status(201).send(new_user);

关于node.js - Sequelize : How to compare my decrypted values with req. 正文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66577360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com