Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
monitoring
>
openssl1
> 0001-Don-t-send-a-for-ServerKeyExchange-for-kDHr-and-kDHd.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 0001-Don-t-send-a-for-ServerKeyExchange-for-kDHr-and-kDHd.patch of Package openssl1
Index: openssl-1.0.1i/ssl/d1_srvr.c =================================================================== --- openssl-1.0.1i.orig/ssl/d1_srvr.c 2017-11-03 12:16:48.451870446 +0100 +++ openssl-1.0.1i/ssl/d1_srvr.c 2017-11-03 12:16:48.555872130 +0100 @@ -464,7 +464,7 @@ int dtls1_accept(SSL *s) #ifndef OPENSSL_NO_PSK || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint) #endif - || (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd)) + || (alg_k & SSL_kEDH) || (alg_k & SSL_kEECDH) || ((alg_k & SSL_kRSA) && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL