OpenSSL: Add Brainpool curves to crypto_ec_key_group()
Signed-off-by: Cedric Izoard <cedric.izoard@ceva-dsp.com>
This commit is contained in:
parent
c6f2103cac
commit
e84b143e1a
1 changed files with 14 additions and 0 deletions
|
@ -2465,7 +2465,21 @@ int crypto_ec_key_group(struct crypto_ec_key *key)
|
||||||
return 20;
|
return 20;
|
||||||
case NID_secp521r1:
|
case NID_secp521r1:
|
||||||
return 21;
|
return 21;
|
||||||
|
#ifdef NID_brainpoolP256r1
|
||||||
|
case NID_brainpoolP256r1:
|
||||||
|
return 28;
|
||||||
|
#endif /* NID_brainpoolP256r1 */
|
||||||
|
#ifdef NID_brainpoolP384r1
|
||||||
|
case NID_brainpoolP384r1:
|
||||||
|
return 29;
|
||||||
|
#endif /* NID_brainpoolP384r1 */
|
||||||
|
#ifdef NID_brainpoolP512r1
|
||||||
|
case NID_brainpoolP512r1:
|
||||||
|
return 30;
|
||||||
|
#endif /* NID_brainpoolP512r1 */
|
||||||
}
|
}
|
||||||
|
wpa_printf(MSG_ERROR, "OpenSSL: Unsupported curve (nid=%d) in EC key",
|
||||||
|
nid);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue