mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-19 13:57:55 +00:00
ECDH: Replace hex literal with decimal in ecp.c
This commit is contained in:
parent
fb72367f96
commit
86e36c4c2b
2
library/ecp.c
Normal file → Executable file
2
library/ecp.c
Normal file → Executable file
|
@ -411,7 +411,7 @@ static const mbedtls_ecp_curve_info ecp_supported_curves[] =
|
||||||
{ MBEDTLS_ECP_DP_SECP192K1, 18, 192, "secp192k1" },
|
{ MBEDTLS_ECP_DP_SECP192K1, 18, 192, "secp192k1" },
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
|
#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
|
||||||
{ MBEDTLS_ECP_DP_CURVE25519, 0x001D, 256, "x25519" },
|
{ MBEDTLS_ECP_DP_CURVE25519, 29, 256, "x25519" },
|
||||||
#endif
|
#endif
|
||||||
{ MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
|
{ MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue