mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 00:05:36 +01:00
Rename internal MBEDTLS_ENTROPY_HAVE_STRONG to ENTROPY_HAVE_STRONG
This commit renames the test-only flag MBEDTLS_ENTROPY_HAVE_STRONG to ENTROPY_HAVE_STRONG to make it more transparent that it's an internal flag, and also to content the testscript tests/scripts/check-names.pl which previously complained about the macro occurring in a comment in `entropy.c` without being defined in a library file.
This commit is contained in:
parent
47deec488f
commit
d4a872ee67
@ -83,7 +83,7 @@ void mbedtls_entropy_init( mbedtls_entropy_context *ctx )
|
|||||||
mbedtls_havege_init( &ctx->havege_data );
|
mbedtls_havege_init( &ctx->havege_data );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Reminder: Update MBEDTLS_ENTROPY_HAVE_STRONG in the test files
|
/* Reminder: Update ENTROPY_HAVE_STRONG in the test files
|
||||||
* when adding more strong entropy sources here. */
|
* when adding more strong entropy sources here. */
|
||||||
|
|
||||||
#if defined(MBEDTLS_TEST_NULL_ENTROPY)
|
#if defined(MBEDTLS_TEST_NULL_ENTROPY)
|
||||||
|
@ -113,7 +113,7 @@ static int test_errors = 0;
|
|||||||
defined(MBEDTLS_HAVEGE_C) || \
|
defined(MBEDTLS_HAVEGE_C) || \
|
||||||
defined(MBEDTLS_ENTROPY_HARDWARE_ALT) || \
|
defined(MBEDTLS_ENTROPY_HARDWARE_ALT) || \
|
||||||
defined(ENTROPY_NV_SEED) ) )
|
defined(ENTROPY_NV_SEED) ) )
|
||||||
#define MBEDTLS_ENTROPY_HAVE_STRONG
|
#define ENTROPY_HAVE_STRONG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -163,7 +163,7 @@ exit:
|
|||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ENTROPY_HAVE_STRONG */
|
/* BEGIN_CASE depends_on:ENTROPY_HAVE_STRONG */
|
||||||
void entropy_func_len( int len, int ret )
|
void entropy_func_len( int len, int ret )
|
||||||
{
|
{
|
||||||
mbedtls_entropy_context ctx;
|
mbedtls_entropy_context ctx;
|
||||||
@ -224,7 +224,7 @@ exit:
|
|||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ENTROPY_HAVE_STRONG */
|
/* BEGIN_CASE depends_on:ENTROPY_HAVE_STRONG */
|
||||||
void entropy_threshold( int threshold, int chunk_size, int result )
|
void entropy_threshold( int threshold, int chunk_size, int result )
|
||||||
{
|
{
|
||||||
mbedtls_entropy_context ctx;
|
mbedtls_entropy_context ctx;
|
||||||
@ -377,7 +377,7 @@ void entropy_nv_seed( char *read_seed_str )
|
|||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ENTROPY_HAVE_STRONG:MBEDTLS_SELF_TEST */
|
/* BEGIN_CASE depends_on:ENTROPY_HAVE_STRONG:MBEDTLS_SELF_TEST */
|
||||||
void entropy_selftest( int result )
|
void entropy_selftest( int result )
|
||||||
{
|
{
|
||||||
TEST_ASSERT( mbedtls_entropy_self_test( 1 ) == result );
|
TEST_ASSERT( mbedtls_entropy_self_test( 1 ) == result );
|
||||||
|
@ -659,7 +659,7 @@ exit:
|
|||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_CTR_DRBG_C:MBEDTLS_ENTROPY_C:MBEDTLS_ENTROPY_HAVE_STRONG */
|
/* BEGIN_CASE depends_on:MBEDTLS_CTR_DRBG_C:MBEDTLS_ENTROPY_C:ENTROPY_HAVE_STRONG */
|
||||||
void mbedtls_rsa_gen_key( int nrbits, int exponent, int result)
|
void mbedtls_rsa_gen_key( int nrbits, int exponent, int result)
|
||||||
{
|
{
|
||||||
mbedtls_rsa_context ctx;
|
mbedtls_rsa_context ctx;
|
||||||
|
Loading…
Reference in New Issue
Block a user