From 9205812071bcd7bcf098efd80b82ec2bc1a62da4 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 8 Feb 2016 15:52:25 +0100 Subject: Add server support for DHE ciphers Similar patch was provided by Vitezslav Cizek Heavily modified by Rob Crittenden https://fedorahosted.org/mod_nss/ticket/15 --- nss_engine_cipher.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'nss_engine_cipher.h') 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 -- cgit