Add brainpool curves to NID table too.

(cherry picked from commit 6699cb8491)
This commit is contained in:
Dr. Stephen Henson 2013-10-15 12:08:47 +01:00
parent 72550c52ed
commit 3a55a42bff

View File

@ -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;
}