]> granicus.if.org Git - esp-idf/commit
Add the fast crypto function in supplicant
authorDeng Xin <dengxin@espressif.com>
Tue, 1 Aug 2017 14:29:16 +0000 (22:29 +0800)
committerDeng Xin <dengxin@espressif.com>
Wed, 9 Aug 2017 13:36:13 +0000 (21:36 +0800)
commit57bc38d867f1d4a60a5323b86b4349a57d3ada3e
tree61ca1c5e733d3ffd7520aab59d619b8259bb2221
parent1c4f7f20818226155a954d89060ca034d8550cb0
Add the fast crypto function in supplicant
optimize the speed when do wifi connect
25 files changed:
components/esp32/fast_crypto_ops.c [new file with mode: 0644]
components/esp32/include/esp_wifi.h
components/esp32/include/esp_wifi_crypto_types.h [new file with mode: 0644]
components/esp32/include/esp_wpa2.h
components/esp32/include/esp_wps.h
components/esp32/lib
components/wpa_supplicant/component.mk
components/wpa_supplicant/include/crypto/aes_wrap.h
components/wpa_supplicant/include/crypto/crypto.h
components/wpa_supplicant/include/crypto/sha256.h
components/wpa_supplicant/src/crypto/dh_groups.c
components/wpa_supplicant/src/fast_crypto/fast_aes-cbc.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_aes-unwrap.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_aes-wrap.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_crypto_internal-cipher.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_crypto_internal-modexp.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_crypto_internal.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_sha256-internal.c [new file with mode: 0644]
components/wpa_supplicant/src/fast_crypto/fast_sha256.c [new file with mode: 0644]
docs/Doxyfile
docs/api-guides/wifi.rst
examples/wifi/power_save/main/power_save.c
examples/wifi/smart_config/main/smartconfig_main.c
examples/wifi/wpa2_enterprise/main/wpa2_enterprise_main.c
examples/wifi/wps/main/wps.c