docs: Remove internal header esp_wifi_crypto_types.h from documentation

This commit is contained in:
Angus Gratton 2017-09-27 11:17:32 +10:00 committed by Angus Gratton
parent 9a96c8379e
commit c40dc36814
2 changed files with 14 additions and 10 deletions

View file

@ -16,15 +16,21 @@
#ifndef __ESP_WIFI_CRYPTO_TYPES_H__ #ifndef __ESP_WIFI_CRYPTO_TYPES_H__
#define __ESP_WIFI_CRYPTO_TYPES_H__ #define __ESP_WIFI_CRYPTO_TYPES_H__
/* This is an internal API header for configuring the implementation used for WiFi cryptographic
operations.
During normal operation, you don't need to use any of these types or functions in this header.
See esp_wifi.h & esp_wifi_types.h instead.
*/
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
/* /*
* This enumation is about alorigthm will be set when do crypt hash * Enumeration for hash operations.
* operation.When do wpa2 connecting, after invoke crypto_hash_xxx of * When WPA2 is connecting, this enum is used to
* fast_crypto_hash_xxx API, it will do relation crypt operation according * request a hash algorithm via crypto_hash_xxx functions.
* to the enumation.
*/ */
typedef enum { typedef enum {
ESP_CRYPTO_HASH_ALG_MD5, ESP_CRYPTO_HASH_ALG_SHA1, ESP_CRYPTO_HASH_ALG_MD5, ESP_CRYPTO_HASH_ALG_SHA1,
@ -33,10 +39,9 @@ typedef enum {
}esp_crypto_hash_alg_t; }esp_crypto_hash_alg_t;
/* /*
* This enumation is about alorigthm will be set when do crypt cipher * Enumeration for block cipher operations.
* operation.When do wpa2 connecting, after invoke crypto_cipher_xxx of * When WPA2 is connecting, this enum is used to request a block
* fast_crypto_cipher_xxx API, it will do relation crypt operation according * cipher algorithm via crypto_cipher_xxx functions.
* to the enumation.
*/ */
typedef enum { typedef enum {
ESP_CRYPTO_CIPHER_NULL, ESP_CRYPTO_CIPHER_ALG_AES, ESP_CRYPTO_CIPHER_ALG_3DES, ESP_CRYPTO_CIPHER_NULL, ESP_CRYPTO_CIPHER_ALG_AES, ESP_CRYPTO_CIPHER_ALG_3DES,

View file

@ -26,7 +26,6 @@ INPUT = \
## ##
../components/esp32/include/esp_wifi.h \ ../components/esp32/include/esp_wifi.h \
../components/esp32/include/esp_wifi_types.h \ ../components/esp32/include/esp_wifi_types.h \
../components/esp32/include/esp_wifi_crypto_types.h \
../components/esp32/include/esp_smartconfig.h \ ../components/esp32/include/esp_smartconfig.h \
../components/esp32/include/esp_now.h \ ../components/esp32/include/esp_now.h \
## Bluetooth - API Reference ## Bluetooth - API Reference