Closed GoogleCodeExporter closed 8 years ago
You'll have to fill me in on some details of NodeJS to diagnose the issue.
How does NodeJS convert strings to bits? Latin1? UTF-8?
Does NodeJS have you specify the key length in bits, bytes, or words?
What does your generateSalt function return?
Original comment by Jeff.Mott.OR
on 29 Jun 2012 at 9:18
Looks like I figured it out.
In the rolled up PBKDF2.js script in "CryptoJS v3.0.2.zip"
`CryptoJS.enc.Base64` is `undefined`; this was probably intended, but not
something I noticed.
I was comparing node's Base64 encoded output to CryptoJS's hex output.
Another caveat was that the keySizes aren't compatible between CryptoJS and
node.js. Node needs `keySize * 4` in order to output an identical key. I'm not
familiar with what's going on under the hood in either case; but I'll just
assume that's intended.
Node.js's PBKDF2's documentation is pretty scarce; it does, however, say its
"key" parameter is named `keylen`.
FYI: Node.js's crypto library is just a wrapper around some OpenSSL functions.
Original comment by da...@vervestudios.co
on 29 Jun 2012 at 9:36
CryptoJS measures key sizes in 32-bit words, and NodeJS measures key sizes in
8-bit bytes. That's why you needed to multiply by 4.
Original comment by Jeff.Mott.OR
on 30 Jun 2012 at 12:31
Original comment by Jeff.Mott.OR
on 30 Jun 2012 at 10:45
Original issue reported on code.google.com by
da...@vervestudios.co
on 29 Jun 2012 at 8:59