Searched refs:mbedtls_hmac_drbg_random (Results 1 – 9 of 9) sorted by relevance
/mbedtls-3.4.0/tests/suites/ |
D | test_suite_hmac_drbg.function | 74 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) - 4 ) == 0 ); 87 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) ) == 0 ); 97 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) ) == 0 ); 105 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) ) == 0 ); 111 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) ) == 0 ); 116 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) ) == 0 ); 170 TEST_ASSERT( mbedtls_hmac_drbg_random( &ctx, out, sizeof( out ) ) == 0 );
|
D | test_suite_random.function | 75 TEST_EQUAL( 0, mbedtls_hmac_drbg_random( &drbg, 86 TEST_EQUAL( 0, mbedtls_hmac_drbg_random( &drbg,
|
/mbedtls-3.4.0/library/ |
D | hmac_drbg.c | 383 int mbedtls_hmac_drbg_random( void *p_rng, unsigned char *output, size_t out_len ) in mbedtls_hmac_drbg_random() function 435 if( ( ret = mbedtls_hmac_drbg_random( ctx, buf, sizeof( buf ) ) ) != 0 ) in mbedtls_hmac_drbg_write_seed_file() 578 CHK( mbedtls_hmac_drbg_random( &ctx, buf, OUTPUT_LEN ) ); in mbedtls_hmac_drbg_self_test() 579 CHK( mbedtls_hmac_drbg_random( &ctx, buf, OUTPUT_LEN ) ); in mbedtls_hmac_drbg_self_test() 601 CHK( mbedtls_hmac_drbg_random( &ctx, buf, OUTPUT_LEN ) ); in mbedtls_hmac_drbg_self_test() 602 CHK( mbedtls_hmac_drbg_random( &ctx, buf, OUTPUT_LEN ) ); in mbedtls_hmac_drbg_self_test()
|
D | ecdsa.c | 460 mbedtls_hmac_drbg_random, p_rng ); in ecdsa_sign_det_restartable() 463 mbedtls_hmac_drbg_random, p_rng, in ecdsa_sign_det_restartable()
|
/mbedtls-3.4.0/include/mbedtls/ |
D | hmac_drbg.h | 391 int mbedtls_hmac_drbg_random( void *p_rng, unsigned char *output, size_t out_len );
|
D | psa_util.h | 359 static mbedtls_f_rng_t *const mbedtls_psa_get_random = mbedtls_hmac_drbg_random;
|
/mbedtls-3.4.0/programs/test/ |
D | benchmark.c | 934 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); in main() 941 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); in main() 951 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); in main() 958 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); in main()
|
/mbedtls-3.4.0/programs/ssl/ |
D | ssl_test_lib.c | 188 return( mbedtls_hmac_drbg_random( &rng->drbg, output, output_len ) ); in rng_get()
|
/mbedtls-3.4.0/ |
D | ChangeLog | 3745 * mbedtls_ctr_drbg_random() and mbedtls_hmac_drbg_random() are now
|