mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-25 22:35:42 +00:00
Merge "fix(cert-create): add default keysize to Brainpool ECDSA" into integration
This commit is contained in:
commit
5d8c721836
2 changed files with 4 additions and 4 deletions
|
@ -737,9 +737,9 @@ Common build options
|
||||||
+---------------------------+------------------------------------+
|
+---------------------------+------------------------------------+
|
||||||
| ecdsa | 256 (default), 384 |
|
| ecdsa | 256 (default), 384 |
|
||||||
+---------------------------+------------------------------------+
|
+---------------------------+------------------------------------+
|
||||||
| ecdsa-brainpool-regular | unavailable |
|
| ecdsa-brainpool-regular | 256 (default) |
|
||||||
+---------------------------+------------------------------------+
|
+---------------------------+------------------------------------+
|
||||||
| ecdsa-brainpool-twisted | unavailable |
|
| ecdsa-brainpool-twisted | 256 (default) |
|
||||||
+---------------------------+------------------------------------+
|
+---------------------------+------------------------------------+
|
||||||
|
|
||||||
- ``HASH_ALG``: This build flag enables the user to select the secure hash
|
- ``HASH_ALG``: This build flag enables the user to select the secure hash
|
||||||
|
|
|
@ -45,8 +45,8 @@ static const unsigned int KEY_SIZES[KEY_ALG_MAX_NUM][KEY_SIZE_MAX_NUM] = {
|
||||||
{ 2048, 1024, 3072, 4096 }, /* KEY_ALG_RSA */
|
{ 2048, 1024, 3072, 4096 }, /* KEY_ALG_RSA */
|
||||||
#ifndef OPENSSL_NO_EC
|
#ifndef OPENSSL_NO_EC
|
||||||
{ 256, 384 }, /* KEY_ALG_ECDSA_NIST */
|
{ 256, 384 }, /* KEY_ALG_ECDSA_NIST */
|
||||||
{}, /* KEY_ALG_ECDSA_BRAINPOOL_R */
|
{ 256 }, /* KEY_ALG_ECDSA_BRAINPOOL_R */
|
||||||
{} /* KEY_ALG_ECDSA_BRAINPOOL_T */
|
{ 256 } /* KEY_ALG_ECDSA_BRAINPOOL_T */
|
||||||
#endif /* OPENSSL_NO_EC */
|
#endif /* OPENSSL_NO_EC */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue