2020-07-27 05:11:40 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2018-08-13 04:37:56 -04:00
|
|
|
|
|
|
|
#ifndef _SUPPLICANT_OPT_H
|
|
|
|
#define _SUPPLICANT_OPT_H
|
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
2019-07-03 08:09:52 -04:00
|
|
|
#if CONFIG_WPA_MBEDTLS_CRYPTO
|
|
|
|
#define USE_MBEDTLS_CRYPTO 1
|
2020-05-28 11:54:56 -04:00
|
|
|
#else
|
|
|
|
#define CONFIG_TLS_INTERNAL_CLIENT
|
2021-06-03 09:07:51 -04:00
|
|
|
#define CONFIG_CRYPTO_INTERNAL
|
2020-05-28 11:54:56 -04:00
|
|
|
#define CONFIG_TLSV12
|
2019-07-03 08:09:52 -04:00
|
|
|
#endif
|
|
|
|
|
2019-07-26 10:56:40 -04:00
|
|
|
#if CONFIG_WPA_DEBUG_PRINT
|
|
|
|
#define DEBUG_PRINT
|
|
|
|
#endif
|
|
|
|
|
2020-11-12 03:18:24 -05:00
|
|
|
#if CONFIG_WPA_SCAN_CACHE
|
|
|
|
#define SCAN_CACHE_SUPPORTED
|
|
|
|
#endif
|
|
|
|
|
2018-08-13 04:37:56 -04:00
|
|
|
#endif /* _SUPPLICANT_OPT_H */
|