Searched refs:mbedtls_hmac_drbg_random (Results 1 – 10 of 10) sorted by relevance
/mbedtls/tests/suites/ |
A D | test_suite_hmac_drbg.function | 76 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out) - 4) == 0); 89 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); 98 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); 106 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); 112 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); 117 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); 177 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
A D | test_suite_random.function | 89 TEST_EQUAL(0, mbedtls_hmac_drbg_random(&drbg, 100 TEST_EQUAL(0, mbedtls_hmac_drbg_random(&drbg,
|
/mbedtls/library/ |
A D | hmac_drbg.c | 382 int mbedtls_hmac_drbg_random(void *p_rng, unsigned char *output, size_t out_len) in mbedtls_hmac_drbg_random() function 439 if ((ret = mbedtls_hmac_drbg_random(ctx, buf, sizeof(buf))) != 0) { in mbedtls_hmac_drbg_write_seed_file() 588 CHK(mbedtls_hmac_drbg_random(&ctx, buf, OUTPUT_LEN)); in mbedtls_hmac_drbg_self_test() 589 CHK(mbedtls_hmac_drbg_random(&ctx, buf, OUTPUT_LEN)); in mbedtls_hmac_drbg_self_test() 613 CHK(mbedtls_hmac_drbg_random(&ctx, buf, OUTPUT_LEN)); in mbedtls_hmac_drbg_self_test() 614 CHK(mbedtls_hmac_drbg_random(&ctx, buf, OUTPUT_LEN)); in mbedtls_hmac_drbg_self_test()
|
A D | ecdsa.c | 451 mbedtls_hmac_drbg_random, p_rng); in mbedtls_ecdsa_sign_det_restartable() 454 mbedtls_hmac_drbg_random, p_rng, in mbedtls_ecdsa_sign_det_restartable()
|
A D | psa_crypto.c | 4233 ret = mbedtls_hmac_drbg_random(&global_data.rng.drbg, output, request_size); in psa_generate_random_internal()
|
/mbedtls/include/mbedtls/ |
A D | hmac_drbg.h | 378 int mbedtls_hmac_drbg_random(void *p_rng, unsigned char *output, size_t out_len);
|
/mbedtls/programs/test/ |
A D | benchmark.c | 1009 mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); in main() 1017 mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); in main() 1029 mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); in main() 1037 mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); in main()
|
/mbedtls/programs/ssl/ |
A D | ssl_test_lib.c | 176 return mbedtls_hmac_drbg_random(&rng->drbg, output, output_len); in rng_get()
|
/mbedtls/docs/ |
A D | psa-transition.md | 643 …shed replacing the references to `mbedtls_ctr_drbg_random` (or `mbedtls_hmac_drbg_random`) by `mbe…
|
/mbedtls/ |
A D | ChangeLog | 4538 * mbedtls_ctr_drbg_random() and mbedtls_hmac_drbg_random() are now
|
Completed in 43 milliseconds