diff options
author | Christian Heimes <cheimes@redhat.com> | 2016-02-08 15:52:25 +0100 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2016-02-29 16:09:17 -0500 |
commit | 9205812071bcd7bcf098efd80b82ec2bc1a62da4 (patch) | |
tree | 8cbbaa655156965d11da77585052d7762a69a1f8 /nss_engine_cipher.h | |
parent | 09eff5ae973290ff333928487e13974aa7ad0764 (diff) | |
download | mod_nss-9205812071bcd7bcf098efd80b82ec2bc1a62da4.tar.gz mod_nss-9205812071bcd7bcf098efd80b82ec2bc1a62da4.tar.xz mod_nss-9205812071bcd7bcf098efd80b82ec2bc1a62da4.zip |
Add server support for DHE ciphers
Similar patch was provided by Vitezslav Cizek <vcizek@suse.com>
Heavily modified by Rob Crittenden <rcritten@redhat.com>
https://fedorahosted.org/mod_nss/ticket/15
Diffstat (limited to 'nss_engine_cipher.h')
-rw-r--r-- | nss_engine_cipher.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nss_engine_cipher.h b/nss_engine_cipher.h index 80aac0e..f76099f 100644 --- a/nss_engine_cipher.h +++ b/nss_engine_cipher.h @@ -53,6 +53,8 @@ typedef struct #define SSL_ECDH (SSL_kECDHe|SSL_kECDHr|SSL_kEECDH) #define SSL_EECDH (SSL_kEECDH) #define SSL_ADH (SSL_kEDH) +#define SSL_kDHE 0x00040000L +#define SSL_DHE (SSL_kDHE) /* cipher strength */ #define SSL_STRONG_NONE 0x00000001L |