commit | 86e36c4c2b6ccc6053afa2657ccb5659edf9af6a | [log] [tgz] |
---|---|---|
author | Christoph M. Wintersteiger <cwinter@microsoft.com> | Thu Dec 06 17:27:31 2018 +0000 |
committer | Janos Follath <janos.follath@arm.com> | Mon Aug 19 13:36:44 2019 +0100 |
tree | 5cca32ebb448f2cefee01d35e0dce3d876c7d3d7 | |
parent | fb72367f960d2d4ae48997e308e3b359631841b7 [diff] |
ECDH: Replace hex literal with decimal in ecp.c
diff --git a/library/ecp.c b/library/ecp.c old mode 100644 new mode 100755 index 1420f22..c7f54a1 --- a/library/ecp.c +++ b/library/ecp.c
@@ -411,7 +411,7 @@ { 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 }, };