mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 21:15:38 +01: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" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
|
||||
{ MBEDTLS_ECP_DP_CURVE25519, 0x001D, 256, "x25519" },
|
||||
{ MBEDTLS_ECP_DP_CURVE25519, 29, 256, "x25519" },
|
||||
#endif
|
||||
{ MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user