Revert "ECDH: Fix context initialization"

This reverts commit 4a43d14146220e8550d6ad87cb798f74ce9ee209.
This commit is contained in:
Christoph M. Wintersteiger 2019-02-20 17:16:53 +00:00 committed by Janos Follath
parent 30bc9cebda
commit d8c45d5550

View file

@ -186,7 +186,6 @@ static void ecdh_init_internal( mbedtls_ecdh_context_mbed *ctx )
void mbedtls_ecdh_init( mbedtls_ecdh_context *ctx ) void mbedtls_ecdh_init( mbedtls_ecdh_context *ctx )
{ {
ECDH_VALIDATE( ctx != NULL ); ECDH_VALIDATE( ctx != NULL );
memset( ctx, 0, sizeof( mbedtls_ecdh_context ) );
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT) #if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
ecdh_init_internal( ctx ); ecdh_init_internal( ctx );
@ -194,6 +193,8 @@ void mbedtls_ecdh_init( mbedtls_ecdh_context *ctx )
mbedtls_ecp_point_init( &ctx->Vf ); mbedtls_ecp_point_init( &ctx->Vf );
mbedtls_mpi_init( &ctx->_d ); mbedtls_mpi_init( &ctx->_d );
#else #else
memset( ctx, 0, sizeof( mbedtls_ecdh_context ) );
ctx->var = MBEDTLS_ECDH_VARIANT_NONE; ctx->var = MBEDTLS_ECDH_VARIANT_NONE;
#endif #endif
ctx->point_format = MBEDTLS_ECP_PF_UNCOMPRESSED; ctx->point_format = MBEDTLS_ECP_PF_UNCOMPRESSED;