/net-tools-latest/mbedtls-2.4.0/tests/suites/ |
D | test_suite_ctr_drbg.function | 5 int mbedtls_entropy_func( void *data, unsigned char *buf, size_t len ) 70 …TEST_ASSERT( mbedtls_ctr_drbg_seed_entropy_len( &ctx, mbedtls_entropy_func, entropy, add_init, add… 108 …TEST_ASSERT( mbedtls_ctr_drbg_seed_entropy_len( &ctx, mbedtls_entropy_func, entropy, add_init, add… 139 TEST_ASSERT( mbedtls_ctr_drbg_seed( &ctx, mbedtls_entropy_func, entropy, NULL, 0 ) == 0 );
|
D | test_suite_hmac_drbg.function | 10 int mbedtls_entropy_func( void *data, unsigned char *buf, size_t len ) 53 TEST_ASSERT( mbedtls_hmac_drbg_seed( &ctx, md_info, mbedtls_entropy_func, &entropy, 209 TEST_ASSERT( mbedtls_hmac_drbg_seed( &ctx, md_info, mbedtls_entropy_func, &p_entropy, 254 TEST_ASSERT( mbedtls_hmac_drbg_seed( &ctx, md_info, mbedtls_entropy_func, &p_entropy, 299 TEST_ASSERT( mbedtls_hmac_drbg_seed( &ctx, md_info, mbedtls_entropy_func, &p_entropy,
|
D | test_suite_entropy.function | 181 TEST_ASSERT( mbedtls_entropy_func( &ctx, buf, len ) == ret ); 209 TEST_ASSERT( mbedtls_entropy_func( &ctx, buf, sizeof( buf ) ) 241 ret = mbedtls_entropy_func( &ctx, buf, sizeof( buf ) ); 339 TEST_ASSERT( mbedtls_entropy_func( &ctx, entropy, sizeof( entropy ) ) == 0 );
|
/net-tools-latest/mbedtls-2.4.0/library/ |
D | entropy.c | 286 int mbedtls_entropy_func( void *data, unsigned char *output, size_t len ) in mbedtls_entropy_func() function 388 if( ( ret = mbedtls_entropy_func( ctx, buf, MBEDTLS_ENTROPY_BLOCK_SIZE ) ) != 0 ) in mbedtls_entropy_update_nv_seed() 412 if( ( ret = mbedtls_entropy_func( ctx, buf, MBEDTLS_ENTROPY_BLOCK_SIZE ) ) != 0 ) in mbedtls_entropy_write_seed_file() 616 if( ( ret = mbedtls_entropy_func( &ctx, buf, sizeof( buf ) ) ) != 0 ) in mbedtls_entropy_self_test()
|
/net-tools-latest/mbedtls-2.4.0/programs/random/ |
D | gen_entropy.c | 72 ret = mbedtls_entropy_func( &entropy, buf, sizeof( buf ) ); in main()
|
D | gen_random_ctr_drbg.c | 75 …ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, (const unsigned char *) "R… in main()
|
/net-tools-latest/mbedtls-2.4.0/include/mbedtls/ |
D | entropy.h | 199 int mbedtls_entropy_func( void *data, unsigned char *output, size_t len );
|
/net-tools-latest/mbedtls-2.4.0/programs/pkey/ |
D | pk_decrypt.c | 91 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | pk_sign.c | 90 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | pk_encrypt.c | 89 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_sign_pss.c | 91 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_genkey.c | 78 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_encrypt.c | 93 return_val = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, in main()
|
D | dh_genprime.c | 120 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | rsa_decrypt.c | 94 return_val = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, in main()
|
D | ecdsa.c | 135 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ecdh_curve25519.c | 74 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dh_client.c | 102 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dh_server.c | 103 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
/net-tools-latest/mbedtls-2.4.0/yotta/data/example-authcrypt/ |
D | main.cpp | 73 ret = mbedtls_ctr_drbg_seed(&drbg, mbedtls_entropy_func, &entropy, in example()
|
/net-tools-latest/mbedtls-2.4.0/programs/ssl/ |
D | mini_client.c | 197 if( mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_client1.c | 112 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | dtls_client.c | 119 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_server.c | 183 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|
D | ssl_fork_server.c | 127 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, in main()
|