Home
last modified time | relevance | path

Searched refs:blob (Results 1 – 17 of 17) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/
Deap.c523 sm->config.client_cert = (u8 *)sm->blob[0].name; in eap_peer_config_init()
524 sm->config.private_key = (u8 *)sm->blob[1].name; in eap_peer_config_init()
525 sm->config.ca_cert = (u8 *)sm->blob[2].name; in eap_peer_config_init()
660 sm->blob[0].name = (char *)os_zalloc(BLOB_NAME_LEN+1); in eap_peer_blob_init()
661 if (sm->blob[0].name == NULL) { in eap_peer_blob_init()
665 os_strlcpy(sm->blob[0].name, CLIENT_CERT_NAME, BLOB_NAME_LEN+1); in eap_peer_blob_init()
666 sm->blob[0].len = g_wpa_client_cert_len; in eap_peer_blob_init()
667 sm->blob[0].data = g_wpa_client_cert; in eap_peer_blob_init()
671 sm->blob[1].name = (char *)os_zalloc(BLOB_NAME_LEN+1); in eap_peer_blob_init()
672 if (sm->blob[1].name == NULL) { in eap_peer_blob_init()
[all …]
Deap_fast_pac.c265 const struct wpa_config_blob *blob; in eap_fast_init_pac_data() local
266 blob = eap_get_config_blob(sm, pac_file); in eap_fast_init_pac_data()
267 if (blob == NULL) { in eap_fast_init_pac_data()
274 rc->pos = (char *) blob->data; in eap_fast_init_pac_data()
275 rc->end = (char *) blob->data + blob->len; in eap_fast_init_pac_data()
542 struct wpa_config_blob *blob; in eap_fast_write_pac() local
543 blob = os_zalloc(sizeof(*blob)); in eap_fast_write_pac()
544 if (blob == NULL) in eap_fast_write_pac()
546 blob->data = (u8 *) buf; in eap_fast_write_pac()
547 blob->len = len; in eap_fast_write_pac()
[all …]
Deap_i.h293 struct wpa_config_blob blob[BLOB_NUM]; member
331 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
Deap_tls_common.c34 const struct wpa_config_blob *blob; in eap_tls_check_blob() local
39 blob = eap_get_config_blob(sm, *name);// + 7); in eap_tls_check_blob()
40 if (blob == NULL) { in eap_tls_check_blob()
47 *data = blob->data; in eap_tls_check_blob()
48 *data_len = blob->len; in eap_tls_check_blob()
/hal_espressif-latest/components/esp_coex/
DCMakeLists.txt33 set(blob coexist) variable
34 add_prebuilt_library(${blob} "${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}/lib${blob}.a"
36 target_link_libraries(${COMPONENT_LIB} PUBLIC ${blob})
/hal_espressif-latest/components/esp_wifi/
DCMakeLists.txt74 foreach(blob ${blobs})
75 … add_prebuilt_library(${blob} "${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}/lib${blob}.a"
78 list(REMOVE_ITEM blob_reqs ${blob}) # remove itself from requirements
79 set_property(TARGET ${blob} APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${blob_reqs})
80 target_link_libraries(${COMPONENT_LIB} PUBLIC ${blob})
/hal_espressif-latest/components/efuse/src/
Desp_efuse_utility.c44 static uint32_t fill_reg(int bit_start_in_reg, int bit_count_in_reg, uint8_t* blob, int* filled_bit…
96 uint8_t* blob = (uint8_t *) arr_out; in esp_efuse_utility_fill_buff() local
102 blob[(*bits_counter) / 8] |= (uint8_t)(reg_of_aligned_bits << shift_bit); in esp_efuse_utility_fill_buff()
111 blob[(*bits_counter) / 8] |= (uint8_t)(reg_of_aligned_bits >> sum_shift); in esp_efuse_utility_fill_buff()
357 static uint32_t fill_reg(int bit_start_in_reg, int bit_count_in_reg, uint8_t* blob, int* filled_bit… argument
363 temp_blob_32 = blob[(*filled_bits_blob) / 8] >> shift_bit;
372 temp_blob_32 = blob[(*filled_bits_blob) / 8];
/hal_espressif-latest/tools/esptool_py/docs/en/
Dabout.rst6 …ersion 2 or later. See `the LICENSE <https://github.com/espressif/esptool/blob/master/LICENSE>`_ f…
/hal_espressif-latest/tools/esptool_py/docs/
DREADME.md17 …ion see the `esp-docs` documentation at https://github.com/espressif/esp-docs/blob/master/README.md
/hal_espressif-latest/tools/esptool_py/
DREADME.md21 … See the accompanying [LICENSE file](https://github.com/espressif/esptool/blob/master/LICENSE) for…
Dpyproject.toml51 Changelog = "https://github.com/espressif/esptool/blob/master/CHANGELOG.md"
DCONTRIBUTING.rst134 …` in the `tests workflow definition <https://github.com/espressif/esptool/blob/master/.github/work…
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Ddump-cmd.rst8 …ister values in the `register space <https://github.com/espressif/esp-idf/blob/master/components/s…
Dexecute-scripts-cmd.rst73 The script `execute_efuse_script.py <https://github.com/espressif/esptool/blob/master/test/efuse_sc…
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dboot-mode-selection.rst247 …-IDF source under RESET_REASON enum <https://github.com/espressif/esp-idf/blob/release/v5.2/compon…
248 …he `get_reset_reason() ROM function <https://github.com/espressif/esp-idf/blob/release/v5.2/compon…
250 …esented in the `GPIO_STRAP register <https://github.com/espressif/esp-idf/blob/release/v5.2/compon…
Dserial-protocol.rst149 …lemented command". (`Full list here <https://github.com/espressif/esptool/blob/master/flasher_stub…
437 … See `flash_set_parameters function <https://github.com/espressif/esptool/blob/da31d9d7a1bb496995f…
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dbasic-commands.rst179 Refer to `flashrom source code <https://github.com/flashrom/flashrom/blob/master/include/flashchips…