-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node v6.6.0 PBKDF2() Out of Memory #293
Comments
How much memory do you have on your machine? You just ran out of memory. |
My coworker told me about the error and I reproduced the same error after updating to v6.6.0. It probably is a v6.6.0 PBKDF2 bug. hmmm.... 😐 |
I've narrowed it down to the following from connection.js which crashes every time. Can close this. var crypto = require('crypto');
var salt = new Buffer('McWpw6FL29zJ6E97Le3hKQ==', 'base64')
crypto.pbkdf2('', salt, 1, 32, "sha256", function(error, saltedPassword) {
console.log(error)
console.log(saltedPassword)
}) I've opened nodejs/node#8571 |
I think this should be left open until the issue is resolved in Node. Will save time for others trying to figure out what's wrong... |
Let's keep it open such that it's easier for people to find the link to the node's bug. |
@scttcper I can confirm that with the recent release of @neumino You may consider closing the issue. |
Updated from node v6.5.0 to v6.6.0 and now I'm getting a weird crash. I've narrowed it down to rethinkdbdash 2.3.23 or the included version of rethinkdb.
The text was updated successfully, but these errors were encountered: