mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 16:48:29 +00:00
Save some space in ECP curve tables
This commit is contained in:
parent
67dbe1ef44
commit
ba782bbc4b
1 changed files with 5 additions and 2 deletions
|
@ -131,7 +131,7 @@ typedef enum
|
||||||
* Curves are listed in order: largest curves first, and for a given size,
|
* Curves are listed in order: largest curves first, and for a given size,
|
||||||
* fastest curves first. This provides the default order for the SSL module.
|
* fastest curves first. This provides the default order for the SSL module.
|
||||||
*/
|
*/
|
||||||
static const ecp_curve_info ecp_supported_curves[POLARSSL_ECP_DP_MAX] =
|
static const ecp_curve_info ecp_supported_curves[] =
|
||||||
{
|
{
|
||||||
#if defined(POLARSSL_ECP_DP_SECP521R1_ENABLED)
|
#if defined(POLARSSL_ECP_DP_SECP521R1_ENABLED)
|
||||||
{ POLARSSL_ECP_DP_SECP521R1, 25, 521, "secp521r1" },
|
{ POLARSSL_ECP_DP_SECP521R1, 25, 521, "secp521r1" },
|
||||||
|
@ -169,7 +169,10 @@ static const ecp_curve_info ecp_supported_curves[POLARSSL_ECP_DP_MAX] =
|
||||||
{ POLARSSL_ECP_DP_NONE, 0, 0, NULL },
|
{ POLARSSL_ECP_DP_NONE, 0, 0, NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
static ecp_group_id ecp_supported_grp_id[POLARSSL_ECP_DP_MAX];
|
#define ECP_NB_CURVES sizeof( ecp_supported_curves ) / \
|
||||||
|
sizeof( ecp_supported_curves[0] )
|
||||||
|
|
||||||
|
static ecp_group_id ecp_supported_grp_id[ECP_NB_CURVES];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* List of supported curves and associated info
|
* List of supported curves and associated info
|
||||||
|
|
Loading…
Reference in a new issue