/hal_espressif-3.5.0/components/wpa_supplicant/src/crypto/ |
D | sha256-internal.c | 84 static int sha256_compress(struct sha256_state *md, unsigned char *buf) in sha256_compress() argument 92 S[i] = md->state[i]; in sha256_compress() 120 md->state[i] = md->state[i] + S[i]; in sha256_compress() 127 void sha256_init(struct sha256_state *md) in sha256_init() argument 129 md->curlen = 0; in sha256_init() 130 md->length = 0; in sha256_init() 131 md->state[0] = 0x6A09E667UL; in sha256_init() 132 md->state[1] = 0xBB67AE85UL; in sha256_init() 133 md->state[2] = 0x3C6EF372UL; in sha256_init() 134 md->state[3] = 0xA54FF53AUL; in sha256_init() [all …]
|
D | sha512-internal.c | 110 static int sha512_compress(struct sha512_state *md, unsigned char *buf) in sha512_compress() argument 122 S[i] = md->state[i]; in sha512_compress() 151 md->state[i] = md->state[i] + S[i]; in sha512_compress() 161 @param md The hash state you wish to initialize 164 void sha512_init(struct sha512_state *md) in sha512_init() argument 166 md->curlen = 0; in sha512_init() 167 md->length = 0; in sha512_init() 168 md->state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 169 md->state[1] = CONST64(0xbb67ae8584caa73b); in sha512_init() 170 md->state[2] = CONST64(0x3c6ef372fe94f82b); in sha512_init() [all …]
|
D | sha384-internal.c | 49 @param md The hash state you wish to initialize 52 void sha384_init(struct sha384_state *md) in sha384_init() argument 54 md->curlen = 0; in sha384_init() 55 md->length = 0; in sha384_init() 56 md->state[0] = CONST64(0xcbbb9d5dc1059ed8); in sha384_init() 57 md->state[1] = CONST64(0x629a292a367cd507); in sha384_init() 58 md->state[2] = CONST64(0x9159015a3070dd17); in sha384_init() 59 md->state[3] = CONST64(0x152fecd8f70e5939); in sha384_init() 60 md->state[4] = CONST64(0x67332667ffc00b31); in sha384_init() 61 md->state[5] = CONST64(0x8eb44a8768581511); in sha384_init() [all …]
|
D | sha384_i.h | 18 void sha384_init(struct sha384_state *md); 19 int sha384_process(struct sha384_state *md, const unsigned char *in, 21 int sha384_done(struct sha384_state *md, unsigned char *out);
|
D | sha256_i.h | 20 void sha256_init(struct sha256_state *md); 21 int sha256_process(struct sha256_state *md, const unsigned char *in, 23 int sha256_done(struct sha256_state *md, unsigned char *out);
|
D | sha512_i.h | 20 void sha512_init(struct sha512_state *md); 21 int sha512_process(struct sha512_state *md, const unsigned char *in, 23 int sha512_done(struct sha512_state *md, unsigned char *out);
|
/hal_espressif-3.5.0/examples/bluetooth/hci/ |
D | README.md | 13 See the [README.md](./controller_hci_uart_esp32/README.md) file in the example [controller_hci_uart… 19 See the [README.md](./controller_hci_uart_esp32c3_and_esp32s3/README.md) file in the example [contr… 25 See the [README.md](./controller_vhci_ble_adv/README.md) file in the example [controller_vhci_ble_a… 31 See the [README.md](./ble_adv_scan_combined/README.md) file in the example [ble_adv_scan_combined](…
|
/hal_espressif-3.5.0/docs/zh_CN/api-reference/bluetooth/ |
D | index.rst | 26 …file:`GATT 客户端示例 <bluetooth/bluedroid/ble/gatt_client/tutorial/Gatt_Client_Example_Walkthrough.md>` 27 …bluedroid/ble/gatt_server_service_table/tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md>` 28 …file:`GATT 服务端示例 <bluetooth/bluedroid/ble/gatt_server/tutorial/Gatt_Server_Example_Walkthrough.md>` 29 …bluetooth/bluedroid/ble/gatt_security_client/tutorial/Gatt_Security_Client_Example_Walkthrough.md>` 30 …bluetooth/bluedroid/ble/gatt_security_server/tutorial/Gatt_Security_Server_Example_Walkthrough.md>` 31 …th/bluedroid/ble/gattc_multi_connect/tutorial/Gatt_Client_Multi_Connection_Example_Walkthrough.md>`
|
/hal_espressif-3.5.0/docs/en/api-reference/bluetooth/ |
D | index.rst | 32 …mple Walkthrough <bluetooth/bluedroid/ble/gatt_client/tutorial/Gatt_Client_Example_Walkthrough.md>` 33 …bluedroid/ble/gatt_server_service_table/tutorial/Gatt_Server_Service_Table_Example_Walkthrough.md>` 34 …mple Walkthrough <bluetooth/bluedroid/ble/gatt_server/tutorial/Gatt_Server_Example_Walkthrough.md>` 35 …bluetooth/bluedroid/ble/gatt_security_client/tutorial/Gatt_Security_Client_Example_Walkthrough.md>` 36 …bluetooth/bluedroid/ble/gatt_security_server/tutorial/Gatt_Security_Server_Example_Walkthrough.md>` 37 …th/bluedroid/ble/gattc_multi_connect/tutorial/Gatt_Client_Multi_Connection_Example_Walkthrough.md>`
|
/hal_espressif-3.5.0/examples/protocols/sockets/non_blocking/ |
D | README.md | 4 (See the README.md file in the upper level 'examples' directory for more information about examples… 52 …i-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more d… 69 …s for the standard [TCP sever](../tcp_server/README.md) and the [TCP client](../tcp_client/README.… 70 …ls and scripts as descibed in the upper level documentation on [BSD socket examples](../README.md).
|
/hal_espressif-3.5.0/docs/zh_CN/contribute/ |
D | creating-examples.rst | 13 - 示例项目需要包含一个 ``README.md`` 文件,建议使用 :idf_file:`示例项目 README 模板 <docs/TEMPLATE_EXAMPLE_README.md>` ,并… 26 - 示例项目的名字(包括 ``Makefile`` 和 ``README.md`` 中)应使用 ``example``,而不要写 “demo”,“test” 等词汇。 28 - 每个示例项目应包含一个 ``README.md`` 文件,建议使用 :idf_file:`示例项目 README 模板 <docs/TEMPLATE_EXAMPLE_README.md>`。
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gattc_multi_connect/tutorial/ |
D | Gatt_Client_Multi_Connection_Example_Walkthrough.md | 6 …le Walkthrough](../../gatt_client/tutorial/Gatt_Client_Example_Walkthrough.md) and is shown in the… 16 …_Example_Walkthrough.md#includes) in [GATT Client Example Walkthrough](../../gatt_client/tutorial/… 19 …mple_Walkthrough.md#main-entry-point) in [GATT Client Example Walkthrough](../../gatt_client/tutor… 31 …mple_Walkthrough.md#main-entry-point) in [GATT Client Example Walkthrough](../../gatt_client/tutor… 48 …le_Walkthrough.md#application-profiles) in [GATT Client Example Walkthrough](../../gatt_client/tut… 53 …_Walkthrough.md#setting-scan-parameters) in [GATT Client Example Walkthrough](../../gatt_client/tu… 56 …ample_Walkthrough.md#start-scanning) in [GATT Client Example Walkthrough](../../gatt_client/tutori… 59 …ample_Walkthrough.md#start-scanning) in [GATT Client Example Walkthrough](../../gatt_client/tutori…
|
/hal_espressif-3.5.0/docs/en/api-guides/esp-ble-mesh/ |
D | ble-mesh-feature-list.rst | 116 …sp_ble_mesh/ble_mesh_node/onoff_client/tutorial/BLE_Mesh_Node_OnOff_Client_Example_Walkthrough.md>` 117 …sp_ble_mesh/ble_mesh_node/onoff_server/tutorial/BLE_Mesh_Node_OnOff_Server_Example_Walkthrough.md>` 120 …<bluetooth/esp_ble_mesh/ble_mesh_provisioner/tutorial/BLE_Mesh_Provisioner_Example_Walkthrough.md>` 123 …le_mesh_fast_provision/fast_prov_client/tutorial/BLE_Mesh_Fast_Prov_Client_Example_Walkthrough.md>` 124 …le_mesh_fast_provision/fast_prov_server/tutorial/BLE_Mesh_Fast_Prov_Server_Example_Walkthrough.md>` 128 …luetooth/esp_ble_mesh/ble_mesh_wifi_coexist/tutorial/BLE_Mesh_WiFi_Coexist_Example_Walkthrough.md>`
|
/hal_espressif-3.5.0/examples/bluetooth/nimble/ |
D | README.md | 15 See the [README.md](../../README.md) file in the upper level [examples](../../) directory for more … 19 See the [README.md](../../README.md) file in the upper level [examples](../../) directory for more …
|
/hal_espressif-3.5.0/examples/protocols/modbus/tcp/ |
D | README.md | 15 See README.md for each individual project for more information. 22 The master and slave boards should be connected to the same network (see the README.md file in exam… 23 See the connection schematic in README.md files of each example. 28 Please refer to README.md files of each example project for more information. This example uses the… 37 Refer to README.md file in the appropriate example folder for more information about master and sla…
|
/hal_espressif-3.5.0/docs/en/contribute/ |
D | creating-examples.rst | 13 …e example should have a ``README.md`` file. Use the :idf_file:`template example README <docs/TEMPL… 26 * Example project name (in ``Makefile`` and ``README.md``) uses the word "example". Use "example" i… 28 * Example has a ``README.md`` file which is similar to the :idf_file:`template example README <docs…
|
/hal_espressif-3.5.0/examples/protocols/asio/asio_chat/ |
D | README.md | 4 (See the README.md file in the upper level 'examples' directory for more information about examples… 41 …i-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more d… 62 See the README.md file in the upper level 'examples' directory for more information about examples.
|
/hal_espressif-3.5.0/examples/protocols/asio/tcp_echo_server/ |
D | README.md | 13 …i-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more d… 19 See the README.md file in the upper level 'examples' directory for more information about examples.
|
/hal_espressif-3.5.0/examples/protocols/asio/udp_echo_server/ |
D | README.md | 13 …i-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more d… 19 See the README.md file in the upper level 'examples' directory for more information about examples.
|
/hal_espressif-3.5.0/examples/peripherals/secure_element/atecc608_ecdsa/ |
D | README.md | 8 (See the README.md file in the upper level 'examples' directory for more information about examples… 12 ….com/espressif/esp-cryptoauthlib/blob/master/esp_cryptoauth_utility/README.md#using-atecc608a-with… 27 ….com/espressif/esp-cryptoauthlib/blob/master/esp_cryptoauth_utility/README.md#esp_cryptoauth_utili… 40 ….com/espressif/esp-cryptoauthlib/blob/master/esp_cryptoauth_utility/README.md#find-type-of-atecc60…
|
/hal_espressif-3.5.0/examples/openthread/ |
D | README.md | 3 See the [README.md](../README.md) file in the upper level [examples](../) directory for more inform… 9 …d CLI](https://github.com/openthread/openthread/blob/master/src/cli/README.md), it supports some a…
|
/hal_espressif-3.5.0/examples/custom_bootloader/bootloader_override/ |
D | README.md | 3 (See the README.md file in the upper level for more information about bootloader examples.) 45 └── README.md This is the file you are currently reading 48 As stated in the `README.md` file in the upper level, when the bootloader components is named `main…
|
/hal_espressif-3.5.0/examples/protocols/http_server/advanced_tests/ |
D | README.md | 3 (See the README.md file in the upper level 'examples' directory for more information about examples… 19 …i-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more d…
|
/hal_espressif-3.5.0/examples/ethernet/basic/ |
D | README.md | 5 (See the README.md file in the upper level 'examples' directory for more information about examples… 32 See common pin assignments for Ethernet examples from [upper level](../README.md#common-pin-assignm… 42 See common configurations for Ethernet examples from [upper level](../README.md#common-configuratio… 77 See common troubleshooting for Ethernet examples from [upper level](../README.md#common-troubleshoo…
|
/hal_espressif-3.5.0/examples/protocols/websocket/ |
D | README.md | 3 (See the README.md file in the upper level 'examples' directory for more information about examples… 15 …i-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more d…
|