From: Dr. Stephen Henson Date: Tue, 15 Oct 2013 11:08:47 +0000 (+0100) Subject: Add brainpool curves to NID table too. X-Git-Tag: master-post-reformat~1132 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=6699cb84912f0d7c04acbf91c3e3dbdae5929857 Add brainpool curves to NID table too. --- diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 08ee76ece1..81ed88f6b2 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -360,6 +360,12 @@ int tls1_ec_nid2curve_id(int nid) return 24; case NID_secp521r1: /* secp521r1 (25) */ return 25; + case NID_brainpoolP256r1: /* brainpoolP256r1 (26) */ + return 26; + case NID_brainpoolP384r1: /* brainpoolP384r1 (27) */ + return 27; + case NID_brainpoolP512r1: /* brainpool512r1 (28) */ + return 28; default: return 0; }