/hal_espressif-latest/components/wpa_supplicant/src/tls/ |
D | pkcs8.c | 23 struct bignum *zero; in pkcs8_key_import() local 44 zero = bignum_init(); in pkcs8_key_import() 45 if (zero == NULL) in pkcs8_key_import() 48 if (bignum_set_unsigned_bin(zero, hdr.payload, hdr.length) < 0) { in pkcs8_key_import() 50 bignum_deinit(zero); in pkcs8_key_import() 55 if (bignum_cmp_d(zero, 0) != 0) { in pkcs8_key_import() 59 bignum_deinit(zero); in pkcs8_key_import() 62 bignum_deinit(zero); in pkcs8_key_import()
|
D | rsa.c | 147 struct bignum *zero; in crypto_rsa_import_private_key() local 196 zero = bignum_init(); in crypto_rsa_import_private_key() 197 if (zero == NULL) in crypto_rsa_import_private_key() 199 pos = crypto_rsa_parse_integer(pos, end, zero); in crypto_rsa_import_private_key() 200 if (pos == NULL || bignum_cmp_d(zero, 0) != 0) { in crypto_rsa_import_private_key() 203 bignum_deinit(zero); in crypto_rsa_import_private_key() 206 bignum_deinit(zero); in crypto_rsa_import_private_key()
|
/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | aes-siv.c | 17 static const u8 zero[AES_BLOCK_SIZE]; variable 75 os_memcpy(tmp, zero, sizeof(zero)); in aes_s2v() 82 data[0] = zero; in aes_s2v() 83 data_len[0] = sizeof(zero); in aes_s2v()
|
/hal_espressif-latest/components/bt/host/bluedroid/device/ |
D | bdaddr.c | 39 uint8_t zero[sizeof(bt_bdaddr_t)] = { 0 }; in bdaddr_is_empty() local 40 return memcmp(addr, &zero, sizeof(bt_bdaddr_t)) == 0; in bdaddr_is_empty()
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/ |
D | stub_flasher.h | 70 uint8_t zero; member
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | crypto.h | 38 const uint8_t zero[16] = { 0 }; in bt_mesh_s1() local 40 return bt_mesh_aes_cmac_one(zero, m, strlen(m), salt); in bt_mesh_s1()
|
D | provisioner_prov.c | 707 uint8_t zero[16] = {0}; local 716 if (!memcmp(add_dev->uuid, zero, 16)) { 740 if (memcmp(add_dev->addr, zero, BLE_MESH_ADDR_LEN)) { 946 uint8_t zero[16] = {0}; local 954 if (!memcmp(del_dev->uuid, zero, 16)) {
|
/hal_espressif-latest/components/esp_hw_support/ |
D | sleep_cpu_asm.S | 124 sw zero, 0x0(t2) /* clear EXTMEM_CACHE_SYNC_ADDR_REG */ 126 sw zero, 0x0(t0) /* clear EXTMEM_CACHE_SYNC_SIZE_REG */
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/ |
D | time_scene_server.c | 53 uint8_t zero[5] = {0}; in send_time_status() local 80 if (memcmp(srv->state->time.tai_seconds, zero, TAI_SECONDS_LEN)) { in send_time_status() 97 if (memcmp(srv->state->time.tai_seconds, zero, TAI_SECONDS_LEN)) { in send_time_status() 159 uint8_t zero[5] = {0}; in time_get() local 222 if (memcmp(status.time_status.tai_seconds, zero, TAI_SECONDS_LEN)) { in time_get() 245 if (memcmp(srv->state->time.tai_seconds, zero, TAI_SECONDS_LEN)) { in time_get()
|
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
D | read-write-protections-cmd.rst | 15 …use fields, only hardware can access such eFuses. Such eFuses are read as zero and the data is mar…
|
D | dump-cmd.rst | 92 …hip. Note that some blocks may be read-protected, in which case the data in the block will be zero.
|
D | burn-efuse-cmd.rst | 89 On {IDF_TARGET_NAME} chips without integrated SPI flash, these eFuses are left zero at the factory.…
|
/hal_espressif-latest/components/wpa_supplicant/src/common/ |
D | sae.c | 578 struct crypto_bignum *a, *u2, *t1, *t2, *z, *t, *zero, *one, *two, *three, in sswu() local 605 zero = crypto_bignum_init_uint(0); in sswu() 615 if (!u2 || !t1 || !t2 || !z || !t || !zero || !one || !two || !three || in sswu() 765 crypto_bignum_deinit(zero, 0); in sswu() 1464 u8 zero[SAE_MAX_HASH_LEN], val[SAE_MAX_PRIME_LEN]; in sae_derive_keys() local 1522 os_memset(zero, 0, hash_len); in sae_derive_keys() 1523 salt = zero; in sae_derive_keys()
|
/hal_espressif-latest/components/heap/include/ |
D | heap_trace.inc | 140 /* realloc with zero size is a free */
|
/hal_espressif-latest/components/log/ |
D | README.rst | 11 …asis. Modules are identified by their tags, which are human-readable ASCII zero-terminated strings.
|
/hal_espressif-latest/components/spi_flash/ |
D | Kconfig | 140 bool "Log warning if writing zero bits to ones" 144 … If this option is enabled, any SPI flash write which tries to set zero bits in the flash to 147 After erasing, individual bits can only be written from one to zero.
|
/hal_espressif-latest/components/esp_psram/ |
D | Kconfig.spiram.common | 99 Note that the variables placed in SPIRAM using EXT_RAM_BSS_ATTR will be zero initialized.
|
/hal_espressif-latest/components/bt/controller/esp32c3/ |
D | Kconfig.in | 321 … If the period value is non-zero, the controller will periodically clear the device information 473 bool "Enable aux packet when ext adv data length is zero"
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | advanced-commands.rst | 144 …r bytes long, the lower three bytes are the final bytes of the MAC address. The upper byte is zero.
|
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/ |
D | btc_ble_mesh_prov.c | 2026 const uint8_t zero[16] = {0}; in btc_ble_mesh_prov_call_handler() local 2027 if (memcmp(arg->add_local_app_key.app_key, zero, 16)) { in btc_ble_mesh_prov_call_handler() 2060 const uint8_t zero[16] = {0}; in btc_ble_mesh_prov_call_handler() local 2061 if (memcmp(arg->add_local_net_key.net_key, zero, 16)) { in btc_ble_mesh_prov_call_handler()
|
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/ |
D | serial-protocol.rst | 282 The checksum field is ignored (can be zero) for all commands except for MEM_DATA, FLASH_DATA, and F… 416 …red via the ``SPI_PAD_CONFIG_xxx`` efuses (if unset, these efuses are all zero and the default SPI… 426 …s an additional 4 bytes in the data payload of this command. These bytes should all be set to zero.
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/nimble_host/ |
D | mesh_bearer_adapt.c | 1418 uint8_t zero[6] = {0}; in bt_mesh_gattc_conn_create() local 1421 if (!addr || !memcmp(addr->val, zero, BLE_MESH_ADDR_LEN) || in bt_mesh_gattc_conn_create()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/ |
D | mesh_bearer_adapt.c | 1179 uint8_t zero[6] = {0}; in bt_mesh_gattc_conn_create() local 1182 if (!addr || !memcmp(addr->val, zero, BLE_MESH_ADDR_LEN) || in bt_mesh_gattc_conn_create()
|
/hal_espressif-latest/components/bt/controller/esp32/ |
D | Kconfig.in | 367 … If the period value is non-zero, the controller will periodically clear the device information
|
/hal_espressif-latest/components/bt/controller/esp32c6/ |
D | Kconfig.in | 615 … If the period value is non-zero, the controller will periodically clear the device information
|