/openthread-3.7.0/third_party/mbedtls/repo/library/ |
D | psa_crypto_random_impl.h | 126 return mbedtls_ctr_drbg_seed(drbg_ctx, mbedtls_entropy_func, entropy, custom, len); in mbedtls_psa_drbg_seed() 129 return mbedtls_hmac_drbg_seed(drbg_ctx, md_info, mbedtls_entropy_func, entropy, custom, len); in mbedtls_psa_drbg_seed()
|
D | entropy.c | 266 int mbedtls_entropy_func(void *data, unsigned char *output, size_t len) in mbedtls_entropy_func() function 385 if ((ret = mbedtls_entropy_func(ctx, buf, MBEDTLS_ENTROPY_BLOCK_SIZE)) != 0) { in mbedtls_entropy_update_nv_seed() 408 if ((ret = mbedtls_entropy_func(ctx, buf, MBEDTLS_ENTROPY_BLOCK_SIZE)) != 0) { in mbedtls_entropy_write_seed_file() 637 if ((ret = mbedtls_entropy_func(&ctx, buf, sizeof(buf))) != 0) { in mbedtls_entropy_self_test()
|
/openthread-3.7.0/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_random.function | 40 mbedtls_entropy_func, &entropy, 51 mbedtls_entropy_func, &entropy, 87 mbedtls_entropy_func, &entropy, 98 mbedtls_entropy_func, &entropy,
|
D | test_suite_entropy.function | 209 TEST_EQUAL(mbedtls_entropy_func(&ctx, buf, sizeof(buf)), 260 TEST_ASSERT(mbedtls_entropy_func(&ctx, buf, len) == ret); 298 TEST_ASSERT(mbedtls_entropy_func(&ctx, buf, sizeof(buf)) 341 ret = mbedtls_entropy_func(&ctx, buf, sizeof(buf)); 368 * if result < 0: result = expected return code from mbedtls_entropy_func() 389 ret = mbedtls_entropy_func(&ctx, buf, sizeof(buf)); 500 TEST_ASSERT(mbedtls_entropy_func(&ctx, entropy, sizeof(entropy)) == 0);
|
/openthread-3.7.0/third_party/mbedtls/repo/programs/random/ |
D | gen_entropy.c | 48 ret = mbedtls_entropy_func(&entropy, buf, sizeof(buf)); in main()
|
D | gen_random_ctr_drbg.c | 53 mbedtls_entropy_func, in main()
|
/openthread-3.7.0/third_party/mbedtls/repo/include/mbedtls/ |
D | entropy.h | 185 int mbedtls_entropy_func(void *data, unsigned char *output, size_t len);
|
/openthread-3.7.0/third_party/mbedtls/repo/programs/pkey/ |
D | pk_decrypt.c | 80 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, in main()
|
D | pk_encrypt.c | 76 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, in main()
|
D | pk_sign.c | 76 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_encrypt.c | 67 ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, in main()
|
D | rsa_sign_pss.c | 77 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dh_genprime.c | 95 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ecdh_curve25519.c | 62 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, in main()
|
D | rsa_genkey.c | 62 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ecdsa.c | 117 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_decrypt.c | 74 ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, in main()
|
D | dh_client.c | 91 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dh_server.c | 87 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
/openthread-3.7.0/third_party/mbedtls/repo/programs/ssl/ |
D | mini_client.c | 176 if (mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_test_lib.c | 55 ret = mbedtls_entropy_func(data, output, len); in dummy_entropy() 104 (reproducible ? dummy_entropy : mbedtls_entropy_func); in rng_seed()
|
D | ssl_client1.c | 97 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dtls_client.c | 115 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_fork_server.c | 113 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_server.c | 115 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|