/hal_espressif-latest/components/mbedtls/port/sha/parallel_engine/ |
D | esp_sha1.c | 126 uint32_t temp, W[16], A, B, C, D, E; in mbedtls_sha1_software_process() local 163 E = ctx->state[4]; in mbedtls_sha1_software_process() 168 P( A, B, C, D, E, W[0] ); in mbedtls_sha1_software_process() 169 P( E, A, B, C, D, W[1] ); in mbedtls_sha1_software_process() 170 P( D, E, A, B, C, W[2] ); in mbedtls_sha1_software_process() 171 P( C, D, E, A, B, W[3] ); in mbedtls_sha1_software_process() 172 P( B, C, D, E, A, W[4] ); in mbedtls_sha1_software_process() 173 P( A, B, C, D, E, W[5] ); in mbedtls_sha1_software_process() 174 P( E, A, B, C, D, W[6] ); in mbedtls_sha1_software_process() 175 P( D, E, A, B, C, W[7] ); in mbedtls_sha1_software_process() [all …]
|
D | esp_sha512.c | 214 uint64_t A, B, C, D, E, F, G, H; in mbedtls_sha512_software_process() local 248 E = ctx->state[4]; in mbedtls_sha512_software_process() 255 P( A, B, C, D, E, F, G, H, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 256 P( H, A, B, C, D, E, F, G, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 257 P( G, H, A, B, C, D, E, F, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 258 P( F, G, H, A, B, C, D, E, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 259 P( E, F, G, H, A, B, C, D, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 260 P( D, E, F, G, H, A, B, C, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 261 P( C, D, E, F, G, H, A, B, W[i], K[i] ); i++; in mbedtls_sha512_software_process() 262 P( B, C, D, E, F, G, H, A, W[i], K[i] ); i++; in mbedtls_sha512_software_process() [all …]
|
/hal_espressif-latest/components/bootloader/subproject/ |
D | CMakeLists.txt | 117 COMMAND ${CMAKE_COMMAND} -E echo "DIGEST ${bootloader_digest_bin}" 142 COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_BINARY_DIR}/${PROJECT_BIN}" 146 … COMMAND ${CMAKE_COMMAND} -E echo "Generated signed binary image ${build_dir}/${PROJECT_BIN}" 148 COMMAND ${CMAKE_COMMAND} -E md5sum "${CMAKE_BINARY_DIR}/${PROJECT_BIN}" 164 COMMAND ${CMAKE_COMMAND} -E echo 166 COMMAND ${CMAKE_COMMAND} -E echo 168 COMMAND ${CMAKE_COMMAND} -E echo 170 COMMAND ${CMAKE_COMMAND} -E echo 172 COMMAND ${CMAKE_COMMAND} -E echo 177 COMMAND ${CMAKE_COMMAND} -E echo [all …]
|
/hal_espressif-latest/components/log/include/ |
D | esp_log.h | 298 #define ESP_EARLY_LOGE( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_ERROR, E __VA_… 308 #define ESP_EARLY_LOGE( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_ERROR, E, ##__… 392 …if (level==ESP_LOG_ERROR ) { esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, format)… 400 … ) { esp_log_write(ESP_LOG_ERROR, tag, LOG_SYSTEM_TIME_FORMAT(E, format), esp_log_sy… 410 …if (level==ESP_LOG_ERROR ) { esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, format)… 418 … ) { esp_log_write(ESP_LOG_ERROR, tag, LOG_SYSTEM_TIME_FORMAT(E, format), esp_log_sy… 453 #define ESP_DRAM_LOGE( tag, format, ... ) ESP_DRAM_LOG_IMPL(tag, format, ESP_LOG_ERROR, E __VA_OP… 463 #define ESP_DRAM_LOGE( tag, format, ... ) ESP_DRAM_LOG_IMPL(tag, format, ESP_LOG_ERROR, E, ##__VA…
|
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/include/tinycrypt/ |
D | ecc.h | 171 BYTES_TO_WORDS_8(84, 9E, 17, A7, AD, FA, E6, BC), 181 BYTES_TO_WORDS_8(CE, 5E, 31, 6B, 57, 33, CE, 2B), 182 BYTES_TO_WORDS_8(16, 9E, 0F, 7C, 4A, EB, E7, 8E), 185 BYTES_TO_WORDS_8(4B, 60, D2, 27, 3E, 3C, CE, 3B),
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ |
D | ecc.h | 171 BYTES_TO_WORDS_8(84, 9E, 17, A7, AD, FA, E6, BC), 181 BYTES_TO_WORDS_8(CE, 5E, 31, 6B, 57, 33, CE, 2B), 182 BYTES_TO_WORDS_8(16, 9E, 0F, 7C, 4A, EB, E7, 8E), 185 BYTES_TO_WORDS_8(4B, 60, D2, 27, 3E, 3C, CE, 3B),
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/ |
D | p_256_multprecision.c | 361 DWORD E; in multiprecision_fast_mod_P256() local 382 E = a[8]; in multiprecision_fast_mod_P256() 383 E += a[9]; in multiprecision_fast_mod_P256() 384 UE = (E < a[9]); in multiprecision_fast_mod_P256() 419 c[0] += E; in multiprecision_fast_mod_P256() 420 U = (c[0] < E); in multiprecision_fast_mod_P256() 481 U -= (c[3] < E); in multiprecision_fast_mod_P256() 483 c[3] -= E; in multiprecision_fast_mod_P256() 548 U -= (c[6] < E); in multiprecision_fast_mod_P256() 550 c[6] -= E; in multiprecision_fast_mod_P256()
|
/hal_espressif-latest/components/mbedtls/port/include/mbedtls/ |
D | bignum.h | 95 int mbedtls_mpi_exp_mod_soft(mbedtls_mpi *X, const mbedtls_mpi *A, const mbedtls_mpi *E, const mbed…
|
/hal_espressif-latest/tools/esptool_py/test/secure_images/ |
D | rsa_secure_boot_signing_pubkey.pem | 5 xQhNX3zHP9ssiTsLQ+6E+MjEvKjYcvAFtadXYtYTUZWhxuh8W2vnhOiR3zyJQL98
|
D | rsa_secure_boot_signing_key.pem | 4 tj3hj3cOarpKo2+dEYrAwY13Bx28tOW0z2uKxQhNX3zHP9ssiTsLQ+6E+MjEvKjY
|
/hal_espressif-latest/components/esp_hw_support/include/ |
D | esp_wake_stub.h | 23 #define ESP_RTC_LOGE( format, ... ) ESP_RTC_LOG(ESP_LOG_ERROR, RTC_LOG_FORMAT(E, format), ##__VA_A…
|
/hal_espressif-latest/components/mbedtls/port/ |
D | esp_bignum.c | 457 const mbedtls_mpi *E, const mbedtls_mpi *N, in mbedtls_mpi_exp_mod() argument 463 ret = esp_mpi_exp_mod( X, A, E, N, _RR ); in mbedtls_mpi_exp_mod() 465 ret = mbedtls_mpi_exp_mod_soft( X, A, E, N, _RR ); in mbedtls_mpi_exp_mod() 469 ret = esp_mpi_exp_mod( X, A, E, N, _RR ); in mbedtls_mpi_exp_mod()
|
/hal_espressif-latest/components/spi_flash/sim/stubs/log/include/ |
D | esp_log.h | 51 …_LEVEL >= ESP_LOG_ERROR) { esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, format), esp_log_ti…
|
/hal_espressif-latest/components/esp_system/ld/ |
D | ld.cmake | 25 COMMAND "${CMAKE_C_COMPILER}" -C -P -x c -E -o ${ld_output} -I ${config_dir}
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/ |
D | Kconfig.memory | 29 E.g. parts are used by the software bootloader, and will only be available
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/ |
D | Kconfig.memory | 29 E.g. parts are used by the software bootloader, and will only be available
|
/hal_espressif-latest/tools/esptool_py/ |
D | pyproject.toml | 126 select = ['E', 'F', 'W'] 132 # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
/hal_espressif-latest/components/esp_netif/ |
D | README.md | 37 | (E) | +------------------+ 91 ### E) ESP-NETIF L2 TAP Interface
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | flash-modes.rst | 33 …Most boards use ``qio`` mode. Some ESP8266 modules, including the ESP-12E modules on some (not all… 88 …ESP-12, ESP-12E and ESP-12F modules (and boards that use them such as NodeMCU, HUZZAH, etc.) usual…
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_trace.h | 64 #define BLE_MESH_PRINT_E(tag, format, ...) {esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, form…
|
/hal_espressif-latest/components/mbedtls/port/mbedtls_rom/ |
D | mbedtls_rom_osi.h | 119 …int (*_rom_mbedtls_mpi_exp_mod)( mbedtls_mpi *X, const mbedtls_mpi *A, const mbedtls_mpi *E, const… 265 …s_mpi *N, const mbedtls_mpi *P, const mbedtls_mpi *Q, const mbedtls_mpi *D, const mbedtls_mpi *E ); 266 …nst *Q, size_t Q_len, unsigned char const *D, size_t D_len, unsigned char const *E, size_t E_len ); 289 …int (*_rom_mbedtls_rsa_deduce_primes)( mbedtls_mpi const *N, mbedtls_mpi const *E, mbedtls_mpi con… 290 …vate_exponent)( mbedtls_mpi const *P, mbedtls_mpi const *Q, mbedtls_mpi const *E, mbedtls_mpi *D ); 292 …dtls_mpi *P, const mbedtls_mpi *Q, const mbedtls_mpi *D, const mbedtls_mpi *E, int (*f_rng)(void *… 471 …int (*_rom_mbedtls_mpi_exp_mod)(mbedtls_mpi *X, const mbedtls_mpi *A, const mbedtls_mpi *E, const …
|
/hal_espressif-latest/components/bootloader_support/bootloader_flash/src/ |
D | bootloader_flash.c | 720 BOOTLOADER_FLASH_LOG(E, "XMC flash startup fail"); in bootloader_flash_xmc_startup() 738 …BOOTLOADER_FLASH_LOG(E, "XMC chip detected (%08X) while support disabled.", g_rom_flashchip.device… in bootloader_flash_xmc_startup()
|
/hal_espressif-latest/zephyr/port/bootloader/ |
D | bootloader_flash.c | 708 BOOTLOADER_FLASH_LOG(E, "XMC flash startup fail"); in bootloader_flash_xmc_startup() 726 …BOOTLOADER_FLASH_LOG(E, "XMC chip detected (%08X) while support disabled.", g_rom_flashchip.device… in bootloader_flash_xmc_startup()
|
/hal_espressif-latest/components/bt/common/include/ |
D | bt_common.h | 134 #define BT_PRINT_E(tag, format, ...) {esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, format), …
|
/hal_espressif-latest/components/mbedtls/esp_crt_bundle/ |
D | cacrt_all.pem | 686 EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E 1264 E-Tugra Certification Authority 1280 E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz 1581 Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn 2506 5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E 2840 0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYuQEkHDVneixCwSQXi/5E/S7fd 3279 E-Tugra Global Root CA RSA v3 3311 E-Tugra Global Root CA ECC v3
|