Skip to content

Commit c65484a

Browse files
author
Shigeki Ohtsu
committed
tls: make server not use DHE in less than 1024bits
DHE key lengths less than 1024bits is already weaken as pointed out in https://weakdh.org/ . 1024bits will not be safe in near future. We will extend this up to 2048bits somedays later. PR-URL: #1739 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Fedor Indutny <[email protected]>
1 parent 1feaa68 commit c65484a

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

doc/api/tls.markdown

+4-2
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,10 @@ automatically set as a listener for the [secureConnection][] event. The
160160

161161
- `dhparam`: A string or `Buffer` containing Diffie Hellman parameters,
162162
required for Perfect Forward Secrecy. Use `openssl dhparam` to create it.
163-
If omitted or invalid, it is silently discarded and DHE ciphers won't be
164-
available.
163+
Its key length should be greater than or equal to 1024 bits, otherwise
164+
it throws an error. It is strongly recommended to use 2048 bits or
165+
more for stronger security. If omitted or invalid, it is silently
166+
discarded and DHE ciphers won't be available.
165167

166168
- `handshakeTimeout`: Abort the connection if the SSL/TLS handshake does not
167169
finish in this many milliseconds. The default is 120 seconds.

src/node_crypto.cc

+6
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,12 @@ void SecureContext::SetDHParam(const FunctionCallbackInfo<Value>& args) {
754754
if (dh == nullptr)
755755
return;
756756

757+
const int keylen = BN_num_bits(dh->p);
758+
if (keylen < 1024)
759+
return env->ThrowError("DH parameter is less than 1024 bits");
760+
else if (keylen < 2048)
761+
fprintf(stderr, "WARNING: DH parameter is less than 2048 bits\n");
762+
757763
SSL_CTX_set_options(sc->ctx_, SSL_OP_SINGLE_DH_USE);
758764
int r = SSL_CTX_set_tmp_dh(sc->ctx_, dh);
759765
DH_free(dh);

test/parallel/test-tls-dhe.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ function test(keylen, expectedCipher, cb) {
6161
}
6262

6363
function test512() {
64-
test(512, 'DHE-RSA-AES128-SHA256', test1024);
65-
ntests++;
64+
assert.throws(function() {
65+
test(512, 'DHE-RSA-AES128-SHA256', null);
66+
}, /DH parameter is less than 1024 bits/);
6667
}
6768

6869
function test1024() {
@@ -76,12 +77,13 @@ function test2048() {
7677
}
7778

7879
function testError() {
79-
test('error', 'ECDHE-RSA-AES128-SHA256', null);
80+
test('error', 'ECDHE-RSA-AES128-SHA256', test512);
8081
ntests++;
8182
}
8283

83-
test512();
84+
test1024();
8485

8586
process.on('exit', function() {
8687
assert.equal(ntests, nsuccess);
88+
assert.equal(ntests, 3);
8789
});

0 commit comments

Comments
 (0)