Searched refs:mbedtls_hmac_drbg_random (Results 1 – 10 of 10) sorted by relevance
/mbedtls-latest/tests/suites/ |
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);
|
D | test_suite_random.function | 89 TEST_EQUAL(0, mbedtls_hmac_drbg_random(&drbg, 100 TEST_EQUAL(0, mbedtls_hmac_drbg_random(&drbg,
|
/mbedtls-latest/library/ |
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()
|
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()
|
D | psa_crypto.c | 4289 ret = mbedtls_hmac_drbg_random(&global_data.rng.drbg, output, request_size);
|
/mbedtls-latest/programs/test/ |
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-latest/include/mbedtls/ |
D | hmac_drbg.h | 378 int mbedtls_hmac_drbg_random(void *p_rng, unsigned char *output, size_t out_len);
|
/mbedtls-latest/programs/ssl/ |
D | ssl_test_lib.c | 176 return mbedtls_hmac_drbg_random(&rng->drbg, output, output_len); in rng_get()
|
/mbedtls-latest/docs/ |
D | psa-transition.md | 643 …shed replacing the references to `mbedtls_ctr_drbg_random` (or `mbedtls_hmac_drbg_random`) by `mbe…
|
/mbedtls-latest/ |
D | ChangeLog | 4733 * mbedtls_ctr_drbg_random() and mbedtls_hmac_drbg_random() are now
|