Home
last modified time | relevance | path

Searched refs:shared (Results 1 – 25 of 50) sorted by relevance

12

/hal_espressif-2.7.6/components/wpa_supplicant/src/crypto/
Ddh_groups.c1270 struct wpabuf *shared; in dh_derive_shared() local
1277 shared = wpabuf_alloc(shared_len); in dh_derive_shared()
1278 if (shared == NULL) in dh_derive_shared()
1284 wpabuf_mhead(shared), &shared_len)) { in dh_derive_shared()
1285 wpabuf_free(shared); in dh_derive_shared()
1290 wpabuf_put(shared, shared_len); in dh_derive_shared()
1291 wpa_hexdump_buf_key(MSG_DEBUG, "DH: shared key", shared); in dh_derive_shared()
1293 return shared; in dh_derive_shared()
/hal_espressif-2.7.6/components/wpa_supplicant/src/tls/
Dtlsv1_client_write.c243 u8 *csecret, *csecret_start, *dh_yc, *shared; in tlsv1_key_x_anon_dh() local
316 shared = os_malloc(shared_len); in tlsv1_key_x_anon_dh()
317 if (shared == NULL) { in tlsv1_key_x_anon_dh()
330 shared, &shared_len)) { in tlsv1_key_x_anon_dh()
334 os_free(shared); in tlsv1_key_x_anon_dh()
338 shared, shared_len); in tlsv1_key_x_anon_dh()
342 if (tls_derive_keys(conn, shared, shared_len)) { in tlsv1_key_x_anon_dh()
346 os_free(shared); in tlsv1_key_x_anon_dh()
349 os_memset(shared, 0, shared_len); in tlsv1_key_x_anon_dh()
350 os_free(shared); in tlsv1_key_x_anon_dh()
Dtlsv1_server_read.c590 u8 *shared; in tls_process_client_key_exchange_dh_anon() local
645 shared = os_malloc(shared_len); in tls_process_client_key_exchange_dh_anon()
646 if (shared == NULL) { in tls_process_client_key_exchange_dh_anon()
658 shared, &shared_len)) { in tls_process_client_key_exchange_dh_anon()
659 os_free(shared); in tls_process_client_key_exchange_dh_anon()
666 shared, shared_len); in tls_process_client_key_exchange_dh_anon()
672 res = tlsv1_server_derive_keys(conn, shared, shared_len); in tls_process_client_key_exchange_dh_anon()
675 os_memset(shared, 0, shared_len); in tls_process_client_key_exchange_dh_anon()
676 os_free(shared); in tls_process_client_key_exchange_dh_anon()
/hal_espressif-2.7.6/examples/peripherals/spi_master/hd_eeprom/main/
DKconfig.projbuild4 bool "The example uses SPI1 shared pins for EEPROM connection"
8 Enable this option will make the EEPROM use SPI1 pins, which is shared with the main
/hal_espressif-2.7.6/docs/en/api-reference/system/
Dintr_alloc.rst26 …nt types of interrupts it handles differently: Shared interrupts and non-shared interrupts. The si…
27 of the two are non-shared interrupts: a separate interrupt is allocated per esp_intr_alloc call and…
29 … when one of the peripherals attached signals an interrupt. Thus, ISRs that are intended for shared
32 Non-shared interrupts can be either level- or edge-triggered. Shared interrupts can
69 …as normal, but they cannot be shared and will always have a fixed interrupt level (namely, the one…
106 Sources attached to non-shared interrupt do not support this feature.
Desp_function_with_shared_stack.rst11 be called inside the shared stack space which is a callback function
22 to a user function where the shared stack space will reside, after calling
/hal_espressif-2.7.6/docs/en/api-reference/protocols/
Desp_sdio_slave_protocol.rst110 - 52 8-bit R/W registers shared by host and slave (For details, see *{IDF_TARGET_NAME} Technical Re…
138 - 0x06C-0x077: R/W registers 0-11 shared by slave and host.
139 - 0x07A-0x07B: R/W registers 14-15 shared by slave and host.
140 - 0x07E-0x07F: R/W registers 18-19 shared by slave and host.
141 - 0x088-0x08B: R/W registers 24-27 shared by slave and host.
142 - 0x09C-0x0BB: R/W registers 32-63 shared by slave and host.
Desp_https_server.rst25 * :cpp:func:`httpd_get_global_transport_ctx` - returns the shared SSL context
/hal_espressif-2.7.6/examples/peripherals/spi_master/hd_eeprom/components/eeprom/
Dlinker.lf1 # This example supports running on the SPI1 bus, which is shared with SPI flash accessed by the
/hal_espressif-2.7.6/examples/protocols/modbus/mb_example_common/
DREADME.md3 …ter and slave examples. The component defines Modbus parameters that are shared between examples a…
/hal_espressif-2.7.6/examples/provisioning/legacy/console_prov/main/
DKconfig.projbuild19 is internally used to generate the shared secret through key exchange.
/hal_espressif-2.7.6/examples/provisioning/legacy/ble_prov/main/
DKconfig.projbuild19 is internally used to generate the shared secret through key exchange.
/hal_espressif-2.7.6/docs/en/api-guides/
Dfreertos-smp.rst126 Ready Tasks List which is shared between both cores. There are several
164 In ESP-IDF FreeRTOS, the Ready Tasks List is shared between cores hence
233 against simultaneous access of data shared between tasks, whilst still allowing
239 still be able to switch contexts. If data is shared between tasks that are
243 protecting shared resources in ESP-IDF FreeRTOS.
246 against data shared between tasks, rather than :cpp:func:`vTaskSuspendAll`.
267 interrupt on PRO_CPU as PRO_CPU is responsible for incrementing the shared tick
297 a valid protection method against simultaneous access to shared data as it
310 spinlock is associated with a shared resource requiring access protection. When
316 implementation of critical sections allows a core to have protected access to a shared
/hal_espressif-2.7.6/examples/provisioning/legacy/custom_config/main/
DKconfig.projbuild31 is internally used to generate the shared secret through key exchange.
/hal_espressif-2.7.6/examples/provisioning/legacy/softap_prov/main/
DKconfig.projbuild38 is internally used to generate the shared secret through key exchange.
/hal_espressif-2.7.6/zephyr/esp32c3/
DCMakeLists.txt69 ## shared WIFI/BT resources
/hal_espressif-2.7.6/docs/en/api-reference/peripherals/
Dspi_slave_hd.rst95 …pi_slave_hd_write_buffer` to write the shared buffer, and :cpp:func:`spi_slave_hd_read_buffer` to …
98 …On {IDF_TARGET_NAME}, the shared registers are read/written in words by the application, but read/…
Dsdspi_host.rst15 With the help of :doc:`SPI Master driver <spi_master>` based on, the SPI bus can be shared among SD…
Dsdmmc_host.rst46 …flash chip in ESP32-WROOM and ESP32-WROVER modules. These pins cannot be shared between an SD card…
/hal_espressif-2.7.6/components/mbedtls/
DKconfig410 bool "Enable pre-shared-key ciphersuites"
413 … Enable to show configuration for different types of pre-shared-key TLS authentatication methods.
422 Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.
429 Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.
436 … Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.
443 Enable to support RSA PSK (pre-shared-key) TLS authentication modes.
/hal_espressif-2.7.6/docs/en/api-reference/provisioning/
Dprovisioning.rst62 4. SoftAP based transport is highly interoperable; however as the same radio is shared between Soft…
104 2. Security1 - Curve25519 based key exchange, shared key derivation and AES256-CTR mode encryption …
106 a. Authorized - Proof of Possession (PoP) string used to authorize session and derive shared key
/hal_espressif-2.7.6/components/esp-tls/
DKconfig52 Enable support for pre shared key ciphers, supported for both mbedTLS as well as
/hal_espressif-2.7.6/docs/en/api-reference/storage/
Dspi_flash_concurrency.rst4 The SPI0/1 bus is shared between the instruction & data cache (for firmware execution) and the SPI1…
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/ble/gatt_security_server/tutorial/
DGatt_Security_Server_Example_Walkthrough.md7shared keys. The core specification defines the legacy pairing and Secure Connections pairing (int…
/hal_espressif-2.7.6/docs/en/hw-reference/esp32/
Dget-started-wrover-kit.rst153shared among onboard and external peripheral devices. Certain combinations of peripherals cannot w…
157 For more details on which pins are shared among which peripherals, please refer to the table in the…

12