admin管理员组文章数量:1346033
Suddenly in my console it's start giving errors, and it has been running fine for days without any change. Please advise.
/node_modules/mysql/lib/protocol/Parser.js:82
throw err;
^
TypeError: Not a buffer
at TypeError (native)
at pbkdf2 (crypto.js:607:20)
at Object.exports.pbkdf2Sync (crypto.js:590:10)
crypto: require("crypto"),
encrypt: function(password) {
var salt = this.getSalt(password, this.constructor.GUID);
return {salt: salt, password: this.getEncrypted(password, salt)};
},
getSalt: function(password, GUID) {
return this.crypto.createHash("sha256").update(password + "|" + GUID).digest("hex")
},
getEncrypted: function(password, salt) {
return this.crypto.pbkdf2Sync(password, salt, 4096, 512, "sha256").toString("hex");
},
verifyPassword: function(user, password) { //var salt = this.getSalt("[email protected]|" + this.constructor.GUID); console.log("salt: " + salt); console.log("password: " + this.getPassword("HUG2015", salt));
return this.crypto.pbkdf2Sync(password, user.salt, 4096, 512, "sha256").toString("hex") == user.password; //test
},
generateAuthToken: function() {
return this.crypto.randomBytes(64).toString("hex");
}
Edit: Usage
getUser: function(emailAddress, password) {
var self = this;
this.connection.query("SELECT * from admin WHERE emailAddress = ?", [emailAddress], function(error, rows, fields){
if(error) {
self.onFault({status: 500, body: error});
} else {
if(rows.length == 1) {
self.verifyPassword(rows[0], password)
} else {
self.onFault({status: 401, body: {}});
}
}
});
},
verifyPassword: function(user, password) {
var self = this;
try {
if(this.authenticationProxy.verifyPassword(user, password)) {
this.setAuthToken(user, this.authenticationProxy.generateAuthToken());
} else {
this.onFault({status: 401, body: {}});
}
} catch(exception) {
this.onFault({status:500, body: exception});
}
},
Suddenly in my console it's start giving errors, and it has been running fine for days without any change. Please advise.
/node_modules/mysql/lib/protocol/Parser.js:82
throw err;
^
TypeError: Not a buffer
at TypeError (native)
at pbkdf2 (crypto.js:607:20)
at Object.exports.pbkdf2Sync (crypto.js:590:10)
crypto: require("crypto"),
encrypt: function(password) {
var salt = this.getSalt(password, this.constructor.GUID);
return {salt: salt, password: this.getEncrypted(password, salt)};
},
getSalt: function(password, GUID) {
return this.crypto.createHash("sha256").update(password + "|" + GUID).digest("hex")
},
getEncrypted: function(password, salt) {
return this.crypto.pbkdf2Sync(password, salt, 4096, 512, "sha256").toString("hex");
},
verifyPassword: function(user, password) { //var salt = this.getSalt("[email protected]|" + this.constructor.GUID); console.log("salt: " + salt); console.log("password: " + this.getPassword("HUG2015", salt));
return this.crypto.pbkdf2Sync(password, user.salt, 4096, 512, "sha256").toString("hex") == user.password; //test
},
generateAuthToken: function() {
return this.crypto.randomBytes(64).toString("hex");
}
Edit: Usage
getUser: function(emailAddress, password) {
var self = this;
this.connection.query("SELECT * from admin WHERE emailAddress = ?", [emailAddress], function(error, rows, fields){
if(error) {
self.onFault({status: 500, body: error});
} else {
if(rows.length == 1) {
self.verifyPassword(rows[0], password)
} else {
self.onFault({status: 401, body: {}});
}
}
});
},
verifyPassword: function(user, password) {
var self = this;
try {
if(this.authenticationProxy.verifyPassword(user, password)) {
this.setAuthToken(user, this.authenticationProxy.generateAuthToken());
} else {
this.onFault({status: 401, body: {}});
}
} catch(exception) {
this.onFault({status:500, body: exception});
}
},
Share
Improve this question
edited May 21, 2015 at 14:59
user2727195
asked May 21, 2015 at 14:45
user2727195user2727195
7,34020 gold badges73 silver badges121 bronze badges
5
- I've editing with the usage – user2727195 Commented May 21, 2015 at 14:59
- That doesn't help much. Which line are you talking about? Can you show example inputs? Can you create a full example outside of your own code? – Artjom B. Commented May 21, 2015 at 15:05
-
hmmm trying my best, the error is at line
return this.crypto.pbkdf2Sync(password, salt, 4096, 512, "sha256").toString("hex");
– user2727195 Commented May 21, 2015 at 15:08 - at minimum, can you please tell me if the strategy is good or should I be changing something incorrect here? – user2727195 Commented May 21, 2015 at 15:21
- Make sure password is not null. – Muhammad Shahzad Commented Mar 20, 2016 at 18:07
3 Answers
Reset to default 9My guess is, that 'not a buffer' is thrown if password is a number. Inside crypto.js there is a toBuf call which tries to change password into a buffer (unless it is already a buffer) but converts Strings only.
You can try two things:
1) ensure that password (passed to crypto.pbkdf2Sync
) is a String
2) or convert it to buffer yourself -> pass new Buffer(password, 'binary')
If this code hasn't changed at all and suddenly it's not working, it's because one of the calling libraries or other changes you have made are interfering.
(Or a new node version is being used, but I doubt that's your problem).
The pattern you are using is not remended:
mysingleton = {
crypto: require('crypto'),
...
}
This is because any callback through an anonymous function will lose your 'this' Object.
Also in node.js, you do not need this pattern, because each file in mode.js is kept in a separate namespace and protected by the module.exports.
You can get rid of the references to 'this' in the following way, as a quick check to see if 'this' is the culprit:
var
c = require('crypto');
mysingleton = {
// delete the crypto definition here
// crypto: ...,
...
encrypt: function(password) {
// note elimination of this below
var salt = mysingleton.getSalt(password, this.constructor.GUID);
return {salt: salt, password: this.getEncrypted(password, salt)};
},
...
getSalt: function(password, GUID) {
return c.createHash("sha256").update(password + "|" + GUID).digest("hex")
},
...
}
If that fixes things, I would suggest you get some more background on what the best remended pattern is for your framework / system.
In my case, I was trying to send the JSON object directly to the function.
{ token: "abc" }
I stringify the input to the function and everything worked properly.
JSON.stringify({ token: "abc" })
本文标签: javascriptnodejs pbkdf2sync Not a buffer errorStack Overflow
版权声明:本文标题:javascript - nodejs pbkdf2sync Not a buffer error - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824606a2545408.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论