/hal_espressif-3.4.0/components/wpa_supplicant/src/crypto/ |
D | crypto_mbedtls-rsa.c | 190 mbedtls_entropy_context *entropy = os_zalloc(sizeof(*entropy)); in crypto_public_key_encrypt_pkcs1_v15() local 193 if (!pkey || !entropy || !ctr_drbg) { in crypto_public_key_encrypt_pkcs1_v15() 194 if (entropy) in crypto_public_key_encrypt_pkcs1_v15() 195 os_free(entropy); in crypto_public_key_encrypt_pkcs1_v15() 202 mbedtls_entropy_init( entropy ); in crypto_public_key_encrypt_pkcs1_v15() 206 entropy, (const unsigned char *) pers, in crypto_public_key_encrypt_pkcs1_v15() 225 mbedtls_entropy_free( entropy ); in crypto_public_key_encrypt_pkcs1_v15() 226 os_free(entropy); in crypto_public_key_encrypt_pkcs1_v15() 241 mbedtls_entropy_context *entropy = os_malloc(sizeof(*entropy)); in crypto_private_key_decrypt_pkcs1_v15() local 244 if (!pkey || !entropy || !ctr_drbg) { in crypto_private_key_decrypt_pkcs1_v15() [all …]
|
D | crypto_mbedtls-ec.c | 41 mbedtls_entropy_context entropy; 274 mbedtls_entropy_context entropy; in crypto_ec_point_mul() local 277 mbedtls_entropy_init(&entropy); in crypto_ec_point_mul() 280 MBEDTLS_MPI_CHK(mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in crypto_ec_point_mul() 291 mbedtls_entropy_free(&entropy); in crypto_ec_point_mul()
|
D | tls_mbedtls.c | 53 mbedtls_entropy_context entropy; /*!< mbedTLS entropy context structure */ member 79 mbedtls_entropy_free(&tls->entropy); in tls_mbedtls_cleanup() 529 mbedtls_entropy_init(&tls->entropy); in tls_create_mbedtls_handle() 538 &tls->entropy, NULL, 0); in tls_create_mbedtls_handle()
|
/hal_espressif-3.4.0/docs/en/api-reference/system/ |
D | random.rst | 13 - An internal entropy source has been enabled by calling :cpp:func:`bootloader_random_enable` and n… 16 …e are continuously mixed into the internal hardware RNG state to provide entropy. Consult the *{I… 23 … bootloader temporarily enables a non-RF entropy source (internal reference voltage noise) that pr… 25 …entropy source temporarily during app startup, or for an application that does not use {IDF_TARGET… 29 …entropy source enabled during the boot process by the ESP-IDF Second Stage Bootloader will seed th… 33 …ware entropy source, consider using a strong software DRBG implementation such as the mbedTLS CTR-… 40 …entropy source, based on sampling an asynchronous 8MHz internal oscillator (see the Technical Refe…
|
/hal_espressif-3.4.0/components/mbedtls/test/ |
D | test_ecp.c | 27 mbedtls_entropy_context entropy; variable 33 mbedtls_entropy_init(&entropy); 34 …TEST_ASSERT_MBEDTLS_OK( mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, NULL, 0) … 43 mbedtls_entropy_free(&entropy);
|
D | test_esp_crt_bundle.c | 68 mbedtls_entropy_context entropy; member 103 mbedtls_entropy_init( &server->entropy ); in server_setup() 130 if ( ( ret = mbedtls_ctr_drbg_seed( &server->ctr_drbg, mbedtls_entropy_func, &server->entropy, in server_setup() 211 mbedtls_entropy_free( &endpoint->entropy ); in endpoint_teardown() 224 mbedtls_entropy_init( &client->entropy ); in client_setup() 228 if ((ret = mbedtls_ctr_drbg_seed(&client->ctr_drbg, mbedtls_entropy_func, &client->entropy, in client_setup()
|
/hal_espressif-3.4.0/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/ |
D | ctr_prng.c | 118 uint8_t const *const entropy, in tc_ctr_prng_init() argument 140 if ((0 != ctx) && (0 != entropy) && (entropyLen >= sizeof seed_material)) { in tc_ctr_prng_init() 142 memcpy(seed_material, entropy, sizeof seed_material); in tc_ctr_prng_init() 165 uint8_t const *const entropy, in tc_ctr_prng_reseed() argument 189 memcpy(seed_material, entropy, sizeof seed_material); in tc_ctr_prng_reseed()
|
/hal_espressif-3.4.0/examples/peripherals/secure_element/atecc608_ecdsa/main/ |
D | ecdsa_example_main.c | 46 static mbedtls_entropy_context entropy; variable 57 mbedtls_entropy_init(&entropy); in configure_mbedtls_rng() 58 ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in configure_mbedtls_rng() 71 mbedtls_entropy_free(&entropy); in close_mbedtls_rng()
|
/hal_espressif-3.4.0/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ |
D | ctr_prng.h | 102 uint8_t const *const entropy, 127 uint8_t const *const entropy,
|
/hal_espressif-3.4.0/components/protocomm/src/security/ |
D | security1.c | 195 mbedtls_entropy_context *entropy = malloc(sizeof(mbedtls_entropy_context)); in handle_session_command0() local 197 if (!ctx_server || !entropy || !ctr_drbg) { in handle_session_command0() 200 free(entropy); in handle_session_command0() 207 mbedtls_entropy_init(entropy); in handle_session_command0() 210 entropy, NULL, 0); in handle_session_command0() 348 mbedtls_entropy_free(entropy); in handle_session_command0() 349 free(entropy); in handle_session_command0()
|
/hal_espressif-3.4.0/examples/protocols/https_mbedtls/main/ |
D | https_mbedtls_example_main.c | 71 mbedtls_entropy_context entropy; in https_get_task() local 85 mbedtls_entropy_init(&entropy); in https_get_task() 86 if((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in https_get_task()
|
/hal_espressif-3.4.0/components/bootloader_support/src/secure_boot_v2/ |
D | secure_boot_signatures_app.c | 171 mbedtls_entropy_context entropy; in esp_secure_boot_verify_rsa_signature_block() local 180 mbedtls_entropy_init(&entropy); in esp_secure_boot_verify_rsa_signature_block() 182 ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, NULL, 0); in esp_secure_boot_verify_rsa_signature_block()
|
/hal_espressif-3.4.0/components/openssl/platform/ |
D | ssl_pm.c | 45 mbedtls_entropy_context entropy; member 154 mbedtls_entropy_init(&ssl_pm->entropy); in ssl_pm_new() 157 …ret = mbedtls_ctr_drbg_seed(&ssl_pm->ctr_drbg, mbedtls_entropy_func, &ssl_pm->entropy, pers, pers_… in ssl_pm_new() 224 mbedtls_entropy_free(&ssl_pm->entropy); in ssl_pm_new() 238 mbedtls_entropy_free(&ssl_pm->entropy); in ssl_pm_free()
|
/hal_espressif-3.4.0/components/esp-tls/ |
D | esp_tls_mbedtls.c | 81 mbedtls_entropy_init(&tls->entropy); in esp_create_mbedtls_handle() 103 mbedtls_entropy_func, &tls->entropy, NULL, 0)) != 0) { in esp_create_mbedtls_handle() 302 mbedtls_entropy_free(&tls->entropy); in esp_mbedtls_cleanup() 438 mbedtls_entropy_init(&ctx->entropy); in esp_mbedtls_server_session_ticket_ctx_init() 443 mbedtls_entropy_func, &ctx->entropy, NULL, 0)) != 0) { in esp_mbedtls_server_session_ticket_ctx_init() 470 mbedtls_entropy_free(&ctx->entropy); in esp_mbedtls_server_session_ticket_ctx_free()
|
D | esp_tls.h | 195 …mbedtls_entropy_context entropy; /*!< mbedTLS entropy c… member 297 …mbedtls_entropy_context entropy; /*!< mbedTLS entropy c… member
|
/hal_espressif-3.4.0/examples/protocols/smtp_client/main/ |
D | smtp_client_example_main.c | 259 mbedtls_entropy_context entropy; in smtp_client_task() local 273 mbedtls_entropy_init(&entropy); in smtp_client_task() 274 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, in smtp_client_task()
|
/hal_espressif-3.4.0/docs/en/security/ |
D | esp32c3_log.inc | 20 I (22) boot: Enabling RNG early entropy source... 89 I (24) boot: Enabling RNG early entropy source... 108 I (148) boot: Disabling RNG early entropy source...
|
D | esp32s3_log.inc | 21 I (46) boot: Enabling RNG early entropy source... 86 I (53) boot: Enabling RNG early entropy source... 103 I (190) boot: Disabling RNG early entropy source...
|
D | esp32_log.inc | 21 I (30) boot: Enabling RNG early entropy source... 91 I (31) boot: Enabling RNG early entropy source... 116 I (178) boot: Disabling RNG early entropy source...
|
D | esp32s2_log.inc | 22 I (66) boot: Enabling RNG early entropy source... 104 I (74) boot: Enabling RNG early entropy source... 129 I (199) boot: Disabling RNG early entropy source...
|
/hal_espressif-3.4.0/docs/zh_CN/security/ |
D | esp32c3_log.inc | 20 I (22) boot: Enabling RNG early entropy source... 89 I (24) boot: Enabling RNG early entropy source... 108 I (148) boot: Disabling RNG early entropy source...
|
D | esp32_log.inc | 21 I (30) boot: Enabling RNG early entropy source... 91 I (31) boot: Enabling RNG early entropy source... 116 I (178) boot: Disabling RNG early entropy source...
|
D | esp32s2_log.inc | 22 I (66) boot: Enabling RNG early entropy source... 104 I (74) boot: Enabling RNG early entropy source... 129 I (199) boot: Disabling RNG early entropy source...
|
/hal_espressif-3.4.0/components/protocomm/test/ |
D | test_protocomm.c | 61 mbedtls_entropy_context entropy; member 377 mbedtls_entropy_init(&session->entropy); in test_sec_endpoint() 379 &session->entropy, NULL, 0); in test_sec_endpoint() 509 mbedtls_entropy_free(&session->entropy); in test_sec_endpoint() 517 mbedtls_entropy_free(&session->entropy); in test_sec_endpoint()
|
/hal_espressif-3.4.0/tools/test_idf_monitor/tests/ |
D | in1.txt | 15 [0;32mI (40) boot: Enabling RNG early entropy source...[0m 39 [0;32mI (175) boot: Disabling RNG early entropy source...[0m
|