summaryrefslogtreecommitdiff
path: root/ssl/s23_lib.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2014-08-07 16:51:50 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2014-08-07 16:51:50 +0000
commit6846a6dfd06216c71f1c9d1da1fa957d0f9ce016 (patch)
treeb4301f78efe63b5c59d963d87744b03588432bd4 /ssl/s23_lib.c
parentf2c8f580eb02fc9ff060de5b242c825113c7a065 (diff)
Notes
Diffstat (limited to 'ssl/s23_lib.c')
-rw-r--r--ssl/s23_lib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ssl/s23_lib.c b/ssl/s23_lib.c
index 0b82777b2ae6..ad5cee09fa07 100644
--- a/ssl/s23_lib.c
+++ b/ssl/s23_lib.c
@@ -112,6 +112,9 @@ 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->algorithms & (SSL_ECDH|SSL_aECDSA))
+ return 0;
if (p != NULL)
{
l=c->id;