/third_party/mbedtls/library/ |
D | entropy.c | 356 int mbedtls_entropy_func( void *data, unsigned char *output, size_t len ) in mbedtls_entropy_func() function 479 if( ( ret = mbedtls_entropy_func( ctx, buf, MBEDTLS_ENTROPY_BLOCK_SIZE ) ) != 0 ) in mbedtls_entropy_update_nv_seed() 500 if( ( ret = mbedtls_entropy_func( ctx, buf, MBEDTLS_ENTROPY_BLOCK_SIZE ) ) != 0 ) in mbedtls_entropy_write_seed_file() 720 if( ( ret = mbedtls_entropy_func( &ctx, buf, sizeof( buf ) ) ) != 0 ) in mbedtls_entropy_self_test()
|
/third_party/libwebsockets/lib/plat/freertos/ |
D | freertos-init.c | 83 n = mbedtls_ctr_drbg_seed(&context->mcdc, mbedtls_entropy_func, in lws_plat_init()
|
/third_party/mbedtls/programs/random/ |
D | gen_entropy.c | 104 ret = mbedtls_entropy_func( &entropy, buf, sizeof( buf ) ); in main()
|
D | gen_random_ctr_drbg.c | 107 …ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, (const unsigned char *) "R… in main()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_entropy.function | 220 TEST_ASSERT( mbedtls_entropy_func( &ctx, buf, len ) == ret ); 251 TEST_ASSERT( mbedtls_entropy_func( &ctx, buf, sizeof( buf ) ) 283 ret = mbedtls_entropy_func( &ctx, buf, sizeof( buf ) ); 393 TEST_ASSERT( mbedtls_entropy_func( &ctx, entropy, sizeof( entropy ) ) == 0 );
|
/third_party/mbedtls/include/mbedtls/ |
D | entropy.h | 228 int mbedtls_entropy_func( void *data, unsigned char *output, size_t len );
|
/third_party/mbedtls/programs/pkey/ |
D | pk_decrypt.c | 124 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, in main()
|
D | pk_encrypt.c | 121 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, in main()
|
D | pk_sign.c | 131 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_sign_pss.c | 121 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_encrypt.c | 121 ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, in main()
|
D | dh_genprime.c | 150 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_genkey.c | 115 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_decrypt.c | 127 ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, in main()
|
D | ecdsa.c | 168 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ecdh_curve25519.c | 105 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dh_client.c | 134 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dh_server.c | 140 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
/third_party/mbedtls/programs/ssl/ |
D | mini_client.c | 221 if( mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_client1.c | 142 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dtls_client.c | 158 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_server.c | 212 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_fork_server.c | 158 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
/third_party/mbedtls/port/src/ |
D | tls_client.c | 63 int ret = mbedtls_ctr_drbg_seed(&session->ctr_drbg, mbedtls_entropy_func, &session->entropy, in MbedtlsClientInit()
|
/third_party/curl/lib/vtls/ |
D | mbedtls.c | 120 ret = mbedtls_entropy_func(data, output, len); in entropy_func_mutex() 285 ret = mbedtls_ctr_drbg_seed(&backend->ctr_drbg, mbedtls_entropy_func, in mbed_connect_step1() 871 ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, in mbedtls_random()
|