diff options
Diffstat (limited to 'ics-openvpn-stripped/main/openssl/ssl/s23_lib.c')
-rw-r--r-- | ics-openvpn-stripped/main/openssl/ssl/s23_lib.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ics-openvpn-stripped/main/openssl/ssl/s23_lib.c b/ics-openvpn-stripped/main/openssl/ssl/s23_lib.c index 3bf72831..f3c29d1d 100644 --- a/ics-openvpn-stripped/main/openssl/ssl/s23_lib.c +++ b/ics-openvpn-stripped/main/openssl/ssl/s23_lib.c @@ -107,6 +107,13 @@ int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p) long l; /* We can write SSLv2 and SSLv3 ciphers */ + /* but no ECC ciphers */ + if (c->algorithm_mkey == SSL_kECDHr || + c->algorithm_mkey == SSL_kECDHe || + c->algorithm_mkey == SSL_kEECDH || + c->algorithm_auth == SSL_aECDH || + c->algorithm_auth == SSL_aECDSA) + return 0; if (p != NULL) { l=c->id; |