mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-25 16:31:12 +00:00
Drop dummy self_test functions
This commit is contained in:
parent
8d92cedd11
commit
240b092a6c
|
@ -757,13 +757,6 @@ int cipher_auth_decrypt( cipher_context_t *ctx,
|
||||||
const unsigned char *tag, size_t tag_len );
|
const unsigned char *tag, size_t tag_len );
|
||||||
#endif /* POLARSSL_CIPHER_MODE_AEAD */
|
#endif /* POLARSSL_CIPHER_MODE_AEAD */
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief Checkup routine
|
|
||||||
*
|
|
||||||
* \return 0 if successful, or 1 if the test failed
|
|
||||||
*/
|
|
||||||
int cipher_self_test( int verbose );
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -208,13 +208,6 @@ int ecdh_calc_secret( ecdh_context *ctx, size_t *olen,
|
||||||
int (*f_rng)(void *, unsigned char *, size_t),
|
int (*f_rng)(void *, unsigned char *, size_t),
|
||||||
void *p_rng );
|
void *p_rng );
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief Checkup routine
|
|
||||||
*
|
|
||||||
* \return 0 if successful, or 1 if the test failed
|
|
||||||
*/
|
|
||||||
int ecdh_self_test( int verbose );
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -219,13 +219,6 @@ void ecdsa_init( ecdsa_context *ctx );
|
||||||
*/
|
*/
|
||||||
void ecdsa_free( ecdsa_context *ctx );
|
void ecdsa_free( ecdsa_context *ctx );
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief Checkup routine
|
|
||||||
*
|
|
||||||
* \return 0 if successful, or 1 if the test failed
|
|
||||||
*/
|
|
||||||
int ecdsa_self_test( int verbose );
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -897,19 +897,4 @@ int cipher_auth_decrypt( cipher_context_t *ctx,
|
||||||
}
|
}
|
||||||
#endif /* POLARSSL_CIPHER_MODE_AEAD */
|
#endif /* POLARSSL_CIPHER_MODE_AEAD */
|
||||||
|
|
||||||
|
|
||||||
#if defined(POLARSSL_SELF_TEST)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Checkup routine
|
|
||||||
*/
|
|
||||||
int cipher_self_test( int verbose )
|
|
||||||
{
|
|
||||||
((void) verbose);
|
|
||||||
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* POLARSSL_SELF_TEST */
|
|
||||||
|
|
||||||
#endif /* POLARSSL_CIPHER_C */
|
#endif /* POLARSSL_CIPHER_C */
|
||||||
|
|
|
@ -262,18 +262,4 @@ int ecdh_calc_secret( ecdh_context *ctx, size_t *olen,
|
||||||
return mpi_write_binary( &ctx->z, buf, *olen );
|
return mpi_write_binary( &ctx->z, buf, *olen );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if defined(POLARSSL_SELF_TEST)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Checkup routine
|
|
||||||
*/
|
|
||||||
int ecdh_self_test( int verbose )
|
|
||||||
{
|
|
||||||
((void) verbose );
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* POLARSSL_SELF_TEST */
|
|
||||||
|
|
||||||
#endif /* POLARSSL_ECDH_C */
|
#endif /* POLARSSL_ECDH_C */
|
||||||
|
|
|
@ -486,17 +486,4 @@ void ecdsa_free( ecdsa_context *ctx )
|
||||||
mpi_free( &ctx->s );
|
mpi_free( &ctx->s );
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(POLARSSL_SELF_TEST)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Checkup routine
|
|
||||||
*/
|
|
||||||
int ecdsa_self_test( int verbose )
|
|
||||||
{
|
|
||||||
((void) verbose );
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* POLARSSL_SELF_TEST */
|
|
||||||
|
|
||||||
#endif /* POLARSSL_ECDSA_C */
|
#endif /* POLARSSL_ECDSA_C */
|
||||||
|
|
|
@ -667,10 +667,3 @@ void check_padding( int pad_mode, char *input_str, int ret, int dlen_check )
|
||||||
TEST_ASSERT( dlen == (size_t) dlen_check );
|
TEST_ASSERT( dlen == (size_t) dlen_check );
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:POLARSSL_SELF_TEST */
|
|
||||||
void cipher_selftest()
|
|
||||||
{
|
|
||||||
TEST_ASSERT( cipher_self_test( 0 ) == 0 );
|
|
||||||
}
|
|
||||||
/* END_CASE */
|
|
||||||
|
|
Loading…
Reference in a new issue