mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 09:48:31 +00:00
Fix function name to fit conventions
This commit is contained in:
parent
c0edc96704
commit
b843b15a02
4 changed files with 6 additions and 6 deletions
|
@ -399,7 +399,7 @@ void mbedtls_ecp_set_max_ops( unsigned max_ops );
|
||||||
* \return \c 0 if \c max_ops == 0 (restart disabled)
|
* \return \c 0 if \c max_ops == 0 (restart disabled)
|
||||||
* \return \c 1 otherwise (restart enabled)
|
* \return \c 1 otherwise (restart enabled)
|
||||||
*/
|
*/
|
||||||
int mbedtls_ecp_restart_enabled( void );
|
int mbedtls_ecp_restart_is_enabled( void );
|
||||||
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -177,7 +177,7 @@ static void ecdsa_restart_det_free( mbedtls_ecdsa_restart_det_ctx *ctx )
|
||||||
rs_ctx->ecp.ops_done = 0; \
|
rs_ctx->ecp.ops_done = 0; \
|
||||||
\
|
\
|
||||||
/* set up our own sub-context if needed */ \
|
/* set up our own sub-context if needed */ \
|
||||||
if( mbedtls_ecp_restart_enabled() && \
|
if( mbedtls_ecp_restart_is_enabled() && \
|
||||||
rs_ctx != NULL && rs_ctx->SUB == NULL ) \
|
rs_ctx != NULL && rs_ctx->SUB == NULL ) \
|
||||||
{ \
|
{ \
|
||||||
rs_ctx->SUB = mbedtls_calloc( 1, sizeof( *rs_ctx->SUB ) ); \
|
rs_ctx->SUB = mbedtls_calloc( 1, sizeof( *rs_ctx->SUB ) ); \
|
||||||
|
|
|
@ -106,7 +106,7 @@ void mbedtls_ecp_set_max_ops( unsigned max_ops )
|
||||||
/*
|
/*
|
||||||
* Check if restart is enabled
|
* Check if restart is enabled
|
||||||
*/
|
*/
|
||||||
int mbedtls_ecp_restart_enabled( void )
|
int mbedtls_ecp_restart_is_enabled( void )
|
||||||
{
|
{
|
||||||
return( ecp_max_ops != 0 );
|
return( ecp_max_ops != 0 );
|
||||||
}
|
}
|
||||||
|
@ -266,7 +266,7 @@ int mbedtls_ecp_check_budget( const mbedtls_ecp_group *grp,
|
||||||
rs_ctx->ops_done = 0; \
|
rs_ctx->ops_done = 0; \
|
||||||
\
|
\
|
||||||
/* set up our own sub-context if needed */ \
|
/* set up our own sub-context if needed */ \
|
||||||
if( mbedtls_ecp_restart_enabled() && \
|
if( mbedtls_ecp_restart_is_enabled() && \
|
||||||
rs_ctx != NULL && rs_ctx->SUB == NULL ) \
|
rs_ctx != NULL && rs_ctx->SUB == NULL ) \
|
||||||
{ \
|
{ \
|
||||||
rs_ctx->SUB = mbedtls_calloc( 1, sizeof( *rs_ctx->SUB ) ); \
|
rs_ctx->SUB = mbedtls_calloc( 1, sizeof( *rs_ctx->SUB ) ); \
|
||||||
|
|
|
@ -239,7 +239,7 @@ int mbedtls_pk_verify_restartable( mbedtls_pk_context *ctx,
|
||||||
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
||||||
/* optimization: use non-restartable version if restart disabled */
|
/* optimization: use non-restartable version if restart disabled */
|
||||||
if( rs_ctx != NULL &&
|
if( rs_ctx != NULL &&
|
||||||
mbedtls_ecp_restart_enabled() &&
|
mbedtls_ecp_restart_is_enabled() &&
|
||||||
ctx->pk_info->verify_rs_func != NULL )
|
ctx->pk_info->verify_rs_func != NULL )
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -352,7 +352,7 @@ int mbedtls_pk_sign_restartable( mbedtls_pk_context *ctx,
|
||||||
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
||||||
/* optimization: use non-restartable version if restart disabled */
|
/* optimization: use non-restartable version if restart disabled */
|
||||||
if( rs_ctx != NULL &&
|
if( rs_ctx != NULL &&
|
||||||
mbedtls_ecp_restart_enabled() &&
|
mbedtls_ecp_restart_is_enabled() &&
|
||||||
ctx->pk_info->sign_rs_func != NULL )
|
ctx->pk_info->sign_rs_func != NULL )
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
Loading…
Reference in a new issue