crypto: add padding to diffie-hellman key
authorFedor Indutny <fedor.indutny@gmail.com>
Sun, 17 Jun 2012 20:14:20 +0000 (00:14 +0400)
committerFedor Indutny <fedor.indutny@gmail.com>
Sun, 17 Jun 2012 20:59:31 +0000 (00:59 +0400)
commitae5b0e1fc190118957e2eaa4f4c71424adbf9c6e
tree83cabbfb279ed52cf9cbb941586245cc66b58b38
parent6d70a4ae162e0f364c45ac2ad6d008bf99aae47f
crypto: add padding to diffie-hellman key

DH_size returns number of bytes in a prime number, DH_compute_key returns number
of bytes in a remainder of exponent, which may have less bytes than a prime
number. Therefore add 0-padding to the allocated buffer.

Fixes #3372
src/node_crypto.cc
test/pummel/test-dh-regr.js [new file with mode: 0644]