]> git.pld-linux.org Git - packages/seamonkey.git/blame - seamonkey-nss-http2.patch
- O: iceape packages
[packages/seamonkey.git] / seamonkey-nss-http2.patch
CommitLineData
ceb753a6
JB
1https://bugzilla.mozilla.org/show_bug.cgi?id=1290037
2
3--- seamonkey-2.46/mozilla/netwerk/protocol/http/Http2Session.cpp.orig 2016-10-31 21:15:27.000000000 +0100
4+++ seamonkey-2.46/mozilla/netwerk/protocol/http/Http2Session.cpp 2017-01-09 17:45:38.639941993 +0100
5@@ -3542,8 +3542,8 @@
6 LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to DH %d < 2048\n",
7 this, keybits));
8 RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
9- } else if (kea == ssl_kea_ecdh && keybits < 256) { // 256 bits is "security level" of 128
10- LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 256\n",
11+ } else if (kea == ssl_kea_ecdh && keybits < 224) { // see rfc7540 9.2.1.
12+ LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 224\n",
13 this, keybits));
14 RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
15 }
This page took 0.048931 seconds and 4 git commands to generate.