wireless: fixed timeout issues, cleaned up headers
This commit is contained in:
parent
98d14a2fe7
commit
764aff6df0
5 changed files with 166 additions and 181 deletions
|
|
@ -59,3 +59,10 @@ add_custom_target(flash
|
||||||
-c "exit"
|
-c "exit"
|
||||||
DEPENDS ensaht
|
DEPENDS ensaht
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_custom_target(debug
|
||||||
|
COMMAND arm-none-eabi-gdb -ex "target extended-remote | openocd -f interface/cmsis-dap.cfg -f target/rp2040.cfg -c 'adapter speed 10000' -c 'gdb_port pipe'" ${CMAKE_CURRENT_BINARY_DIR}/ensaht.elf
|
||||||
|
DEPENDS flash
|
||||||
|
USES_TERMINAL
|
||||||
|
VERBATIM
|
||||||
|
)
|
||||||
|
|
|
||||||
98
lwipopts.h
98
lwipopts.h
|
|
@ -1,11 +1,92 @@
|
||||||
#ifndef _LWIPOPTS_H
|
#ifndef _LWIPOPTS_H
|
||||||
#define _LWIPOPTS_H
|
#define _LWIPOPTS_H
|
||||||
|
|
||||||
// Generally you would define your own explicit list of lwIP options
|
// Common settings used in most of the pico_w examples
|
||||||
// (see https://www.nongnu.org/lwip/2_1_x/group__lwip__opts.html)
|
// (see https://www.nongnu.org/lwip/2_1_x/group__lwip__opts.html for details)
|
||||||
//
|
|
||||||
// This example uses a common include to avoid repetition
|
// allow override in some examples
|
||||||
#include "lwipopts_examples_common.h"
|
#ifndef NO_SYS
|
||||||
|
#define NO_SYS 1
|
||||||
|
#endif
|
||||||
|
// allow override in some examples
|
||||||
|
#ifndef LWIP_SOCKET
|
||||||
|
#define LWIP_SOCKET 0
|
||||||
|
#endif
|
||||||
|
#if PICO_CYW43_ARCH_POLL
|
||||||
|
#define MEM_LIBC_MALLOC 1
|
||||||
|
#else
|
||||||
|
// MEM_LIBC_MALLOC is incompatible with non polling versions
|
||||||
|
#define MEM_LIBC_MALLOC 0
|
||||||
|
#endif
|
||||||
|
#define MEM_ALIGNMENT 4
|
||||||
|
#ifndef MEM_SIZE
|
||||||
|
#define MEM_SIZE 4000
|
||||||
|
#endif
|
||||||
|
#define MEMP_NUM_TCP_SEG 32
|
||||||
|
#define MEMP_NUM_ARP_QUEUE 10
|
||||||
|
#define PBUF_POOL_SIZE 24
|
||||||
|
#define LWIP_ARP 1
|
||||||
|
#define LWIP_ETHERNET 1
|
||||||
|
#define LWIP_ICMP 1
|
||||||
|
#define LWIP_RAW 1
|
||||||
|
#define TCP_WND (8 * TCP_MSS)
|
||||||
|
#define TCP_MSS 1460
|
||||||
|
#define TCP_SND_BUF (8 * TCP_MSS)
|
||||||
|
#define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1)) / (TCP_MSS))
|
||||||
|
#define LWIP_NETIF_STATUS_CALLBACK 1
|
||||||
|
#define LWIP_NETIF_LINK_CALLBACK 1
|
||||||
|
#define LWIP_NETIF_HOSTNAME 1
|
||||||
|
#define LWIP_NETCONN 0
|
||||||
|
#define MEM_STATS 0
|
||||||
|
#define SYS_STATS 0
|
||||||
|
#define MEMP_STATS 0
|
||||||
|
#define LINK_STATS 0
|
||||||
|
// #define ETH_PAD_SIZE 2
|
||||||
|
#define LWIP_CHKSUM_ALGORITHM 3
|
||||||
|
#define LWIP_DHCP 1
|
||||||
|
#define LWIP_IPV4 1
|
||||||
|
#define LWIP_TCP 1
|
||||||
|
#define LWIP_UDP 1
|
||||||
|
#define LWIP_DNS 1
|
||||||
|
#define LWIP_TCP_KEEPALIVE 1
|
||||||
|
#define LWIP_NETIF_TX_SINGLE_PBUF 1
|
||||||
|
#define DHCP_DOES_ARP_CHECK 0
|
||||||
|
#define LWIP_DHCP_DOES_ACD_CHECK 0
|
||||||
|
|
||||||
|
#ifndef NDEBUG
|
||||||
|
#define LWIP_DEBUG 1
|
||||||
|
#define LWIP_STATS 1
|
||||||
|
#define LWIP_STATS_DISPLAY 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define ETHARP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define NETIF_DEBUG LWIP_DBG_OFF
|
||||||
|
#define PBUF_DEBUG LWIP_DBG_OFF
|
||||||
|
#define API_LIB_DEBUG LWIP_DBG_OFF
|
||||||
|
#define API_MSG_DEBUG LWIP_DBG_OFF
|
||||||
|
#define SOCKETS_DEBUG LWIP_DBG_OFF
|
||||||
|
#define ICMP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define INET_DEBUG LWIP_DBG_OFF
|
||||||
|
#define IP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define IP_REASS_DEBUG LWIP_DBG_OFF
|
||||||
|
#define RAW_DEBUG LWIP_DBG_OFF
|
||||||
|
#define MEM_DEBUG LWIP_DBG_OFF
|
||||||
|
#define MEMP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define SYS_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_INPUT_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_OUTPUT_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_RTO_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_CWND_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_WND_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_FR_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_QLEN_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCP_RST_DEBUG LWIP_DBG_OFF
|
||||||
|
#define UDP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define TCPIP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define PPP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define SLIP_DEBUG LWIP_DBG_OFF
|
||||||
|
#define DHCP_DEBUG LWIP_DBG_OFF
|
||||||
|
|
||||||
/* TCP WND must be at least 16 kb to match TLS record size
|
/* TCP WND must be at least 16 kb to match TLS record size
|
||||||
or you will get a warning "altcp_tls: TCP_WND is smaller than the RX decrypion buffer, connection RX might stall!" */
|
or you will get a warning "altcp_tls: TCP_WND is smaller than the RX decrypion buffer, connection RX might stall!" */
|
||||||
|
|
@ -19,15 +100,10 @@
|
||||||
#define MQTT_REQ_MAX_IN_FLIGHT 8
|
#define MQTT_REQ_MAX_IN_FLIGHT 8
|
||||||
|
|
||||||
#define LWIP_ALTCP 1
|
#define LWIP_ALTCP 1
|
||||||
|
|
||||||
// If you don't want to use TLS (just a http request) you can avoid linking to mbedtls and remove the following
|
|
||||||
#define LWIP_ALTCP_TLS 1
|
#define LWIP_ALTCP_TLS 1
|
||||||
#define LWIP_ALTCP_TLS_MBEDTLS 1
|
#define LWIP_ALTCP_TLS_MBEDTLS 1
|
||||||
|
|
||||||
// Note bug in lwip with LWIP_ALTCP and LWIP_DEBUG
|
|
||||||
// https://savannah.nongnu.org/bugs/index.php?62159
|
|
||||||
//#define LWIP_DEBUG 1
|
|
||||||
#undef LWIP_DEBUG
|
#undef LWIP_DEBUG
|
||||||
#define ALTCP_MBEDTLS_DEBUG LWIP_DBG_ON
|
#define ALTCP_MBEDTLS_DEBUG LWIP_DBG_ON
|
||||||
|
|
||||||
#endif
|
#endif /* __LWIPOPTS_H__ */
|
||||||
|
|
|
||||||
|
|
@ -1,92 +0,0 @@
|
||||||
#ifndef _LWIPOPTS_EXAMPLE_COMMONH_H
|
|
||||||
#define _LWIPOPTS_EXAMPLE_COMMONH_H
|
|
||||||
|
|
||||||
|
|
||||||
// Common settings used in most of the pico_w examples
|
|
||||||
// (see https://www.nongnu.org/lwip/2_1_x/group__lwip__opts.html for details)
|
|
||||||
|
|
||||||
// allow override in some examples
|
|
||||||
#ifndef NO_SYS
|
|
||||||
#define NO_SYS 1
|
|
||||||
#endif
|
|
||||||
// allow override in some examples
|
|
||||||
#ifndef LWIP_SOCKET
|
|
||||||
#define LWIP_SOCKET 0
|
|
||||||
#endif
|
|
||||||
#if PICO_CYW43_ARCH_POLL
|
|
||||||
#define MEM_LIBC_MALLOC 1
|
|
||||||
#else
|
|
||||||
// MEM_LIBC_MALLOC is incompatible with non polling versions
|
|
||||||
#define MEM_LIBC_MALLOC 0
|
|
||||||
#endif
|
|
||||||
#define MEM_ALIGNMENT 4
|
|
||||||
#ifndef MEM_SIZE
|
|
||||||
#define MEM_SIZE 4000
|
|
||||||
#endif
|
|
||||||
#define MEMP_NUM_TCP_SEG 32
|
|
||||||
#define MEMP_NUM_ARP_QUEUE 10
|
|
||||||
#define PBUF_POOL_SIZE 24
|
|
||||||
#define LWIP_ARP 1
|
|
||||||
#define LWIP_ETHERNET 1
|
|
||||||
#define LWIP_ICMP 1
|
|
||||||
#define LWIP_RAW 1
|
|
||||||
#define TCP_WND (8 * TCP_MSS)
|
|
||||||
#define TCP_MSS 1460
|
|
||||||
#define TCP_SND_BUF (8 * TCP_MSS)
|
|
||||||
#define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1)) / (TCP_MSS))
|
|
||||||
#define LWIP_NETIF_STATUS_CALLBACK 1
|
|
||||||
#define LWIP_NETIF_LINK_CALLBACK 1
|
|
||||||
#define LWIP_NETIF_HOSTNAME 1
|
|
||||||
#define LWIP_NETCONN 0
|
|
||||||
#define MEM_STATS 0
|
|
||||||
#define SYS_STATS 0
|
|
||||||
#define MEMP_STATS 0
|
|
||||||
#define LINK_STATS 0
|
|
||||||
// #define ETH_PAD_SIZE 2
|
|
||||||
#define LWIP_CHKSUM_ALGORITHM 3
|
|
||||||
#define LWIP_DHCP 1
|
|
||||||
#define LWIP_IPV4 1
|
|
||||||
#define LWIP_TCP 1
|
|
||||||
#define LWIP_UDP 1
|
|
||||||
#define LWIP_DNS 1
|
|
||||||
#define LWIP_TCP_KEEPALIVE 1
|
|
||||||
#define LWIP_NETIF_TX_SINGLE_PBUF 1
|
|
||||||
#define DHCP_DOES_ARP_CHECK 0
|
|
||||||
#define LWIP_DHCP_DOES_ACD_CHECK 0
|
|
||||||
|
|
||||||
#ifndef NDEBUG
|
|
||||||
#define LWIP_DEBUG 1
|
|
||||||
#define LWIP_STATS 1
|
|
||||||
#define LWIP_STATS_DISPLAY 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define ETHARP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define NETIF_DEBUG LWIP_DBG_OFF
|
|
||||||
#define PBUF_DEBUG LWIP_DBG_OFF
|
|
||||||
#define API_LIB_DEBUG LWIP_DBG_OFF
|
|
||||||
#define API_MSG_DEBUG LWIP_DBG_OFF
|
|
||||||
#define SOCKETS_DEBUG LWIP_DBG_OFF
|
|
||||||
#define ICMP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define INET_DEBUG LWIP_DBG_OFF
|
|
||||||
#define IP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define IP_REASS_DEBUG LWIP_DBG_OFF
|
|
||||||
#define RAW_DEBUG LWIP_DBG_OFF
|
|
||||||
#define MEM_DEBUG LWIP_DBG_OFF
|
|
||||||
#define MEMP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define SYS_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_INPUT_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_OUTPUT_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_RTO_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_CWND_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_WND_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_FR_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_QLEN_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCP_RST_DEBUG LWIP_DBG_OFF
|
|
||||||
#define UDP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define TCPIP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define PPP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define SLIP_DEBUG LWIP_DBG_OFF
|
|
||||||
#define DHCP_DEBUG LWIP_DBG_OFF
|
|
||||||
|
|
||||||
#endif /* __LWIPOPTS_H__ */
|
|
||||||
|
|
@ -1,6 +1,75 @@
|
||||||
#ifndef MBEDTLS_CONFIG_TLS_CLIENT_H
|
#ifndef MBEDTLS_CONFIG_H
|
||||||
#define MBEDTLS_CONFIG_TLS_CLIENT_H
|
#define MBEDTLS_CONFIG_H
|
||||||
|
|
||||||
#include "mbedtls_config_examples_common.h"
|
/* Workaround for some mbedtls source files using INT_MAX without including limits.h */
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
|
#define MBEDTLS_NO_PLATFORM_ENTROPY
|
||||||
|
#define MBEDTLS_ENTROPY_HARDWARE_ALT
|
||||||
|
|
||||||
|
#define MBEDTLS_SSL_OUT_CONTENT_LEN 2048
|
||||||
|
|
||||||
|
#define MBEDTLS_ALLOW_PRIVATE_ACCESS
|
||||||
|
#define MBEDTLS_HAVE_TIME
|
||||||
|
#define MBEDTLS_PLATFORM_MS_TIME_ALT
|
||||||
|
|
||||||
|
#define MBEDTLS_CIPHER_MODE_CBC
|
||||||
|
#define MBEDTLS_ECP_DP_SECP192R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP224R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP384R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP521R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP192K1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP224K1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_SECP256K1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_BP256R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_BP384R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_BP512R1_ENABLED
|
||||||
|
#define MBEDTLS_ECP_DP_CURVE25519_ENABLED
|
||||||
|
#define MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
|
||||||
|
#define MBEDTLS_PKCS1_V15
|
||||||
|
#define MBEDTLS_SHA256_SMALLER
|
||||||
|
#define MBEDTLS_SSL_SERVER_NAME_INDICATION
|
||||||
|
#define MBEDTLS_AES_C
|
||||||
|
#define MBEDTLS_ASN1_PARSE_C
|
||||||
|
#define MBEDTLS_BIGNUM_C
|
||||||
|
#define MBEDTLS_CIPHER_C
|
||||||
|
#define MBEDTLS_CTR_DRBG_C
|
||||||
|
#define MBEDTLS_ENTROPY_C
|
||||||
|
#define MBEDTLS_ERROR_C
|
||||||
|
#define MBEDTLS_MD_C
|
||||||
|
#define MBEDTLS_MD5_C
|
||||||
|
#define MBEDTLS_OID_C
|
||||||
|
#define MBEDTLS_PKCS5_C
|
||||||
|
#define MBEDTLS_PK_C
|
||||||
|
#define MBEDTLS_PK_PARSE_C
|
||||||
|
#define MBEDTLS_PLATFORM_C
|
||||||
|
#define MBEDTLS_RSA_C
|
||||||
|
#define MBEDTLS_SHA1_C
|
||||||
|
#define MBEDTLS_SHA224_C
|
||||||
|
#define MBEDTLS_SHA256_C
|
||||||
|
#define MBEDTLS_SHA512_C
|
||||||
|
#define MBEDTLS_SSL_CLI_C
|
||||||
|
#define MBEDTLS_SSL_SRV_C
|
||||||
|
#define MBEDTLS_SSL_TLS_C
|
||||||
|
#define MBEDTLS_X509_CRT_PARSE_C
|
||||||
|
#define MBEDTLS_X509_USE_C
|
||||||
|
#define MBEDTLS_AES_FEWER_TABLES
|
||||||
|
|
||||||
|
/* TLS 1.2 */
|
||||||
|
#define MBEDTLS_SSL_PROTO_TLS1_2
|
||||||
|
#define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
|
||||||
|
#define MBEDTLS_GCM_C
|
||||||
|
#define MBEDTLS_ECDH_C
|
||||||
|
#define MBEDTLS_ECP_C
|
||||||
|
#define MBEDTLS_ECDSA_C
|
||||||
|
#define MBEDTLS_ASN1_WRITE_C
|
||||||
|
|
||||||
|
// The following is needed to parse a certificate
|
||||||
|
#define MBEDTLS_PEM_PARSE_C
|
||||||
|
#define MBEDTLS_BASE64_C
|
||||||
|
|
||||||
|
// The following significantly speeds up mbedtls due to NIST optimizations.
|
||||||
|
#define MBEDTLS_ECP_NIST_OPTIM
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -1,75 +0,0 @@
|
||||||
#ifndef MBEDTLS_CONFIG_EXAMPLES_COMMON_H
|
|
||||||
#define MBEDTLS_CONFIG_EXAMPLES_COMMON_H
|
|
||||||
|
|
||||||
/* Workaround for some mbedtls source files using INT_MAX without including limits.h */
|
|
||||||
#include <limits.h>
|
|
||||||
|
|
||||||
#define MBEDTLS_NO_PLATFORM_ENTROPY
|
|
||||||
#define MBEDTLS_ENTROPY_HARDWARE_ALT
|
|
||||||
|
|
||||||
#define MBEDTLS_SSL_OUT_CONTENT_LEN 2048
|
|
||||||
|
|
||||||
#define MBEDTLS_ALLOW_PRIVATE_ACCESS
|
|
||||||
#define MBEDTLS_HAVE_TIME
|
|
||||||
#define MBEDTLS_PLATFORM_MS_TIME_ALT
|
|
||||||
|
|
||||||
#define MBEDTLS_CIPHER_MODE_CBC
|
|
||||||
#define MBEDTLS_ECP_DP_SECP192R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP224R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP384R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP521R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP192K1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP224K1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_SECP256K1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_BP256R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_BP384R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_BP512R1_ENABLED
|
|
||||||
#define MBEDTLS_ECP_DP_CURVE25519_ENABLED
|
|
||||||
#define MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
|
|
||||||
#define MBEDTLS_PKCS1_V15
|
|
||||||
#define MBEDTLS_SHA256_SMALLER
|
|
||||||
#define MBEDTLS_SSL_SERVER_NAME_INDICATION
|
|
||||||
#define MBEDTLS_AES_C
|
|
||||||
#define MBEDTLS_ASN1_PARSE_C
|
|
||||||
#define MBEDTLS_BIGNUM_C
|
|
||||||
#define MBEDTLS_CIPHER_C
|
|
||||||
#define MBEDTLS_CTR_DRBG_C
|
|
||||||
#define MBEDTLS_ENTROPY_C
|
|
||||||
#define MBEDTLS_ERROR_C
|
|
||||||
#define MBEDTLS_MD_C
|
|
||||||
#define MBEDTLS_MD5_C
|
|
||||||
#define MBEDTLS_OID_C
|
|
||||||
#define MBEDTLS_PKCS5_C
|
|
||||||
#define MBEDTLS_PK_C
|
|
||||||
#define MBEDTLS_PK_PARSE_C
|
|
||||||
#define MBEDTLS_PLATFORM_C
|
|
||||||
#define MBEDTLS_RSA_C
|
|
||||||
#define MBEDTLS_SHA1_C
|
|
||||||
#define MBEDTLS_SHA224_C
|
|
||||||
#define MBEDTLS_SHA256_C
|
|
||||||
#define MBEDTLS_SHA512_C
|
|
||||||
#define MBEDTLS_SSL_CLI_C
|
|
||||||
#define MBEDTLS_SSL_SRV_C
|
|
||||||
#define MBEDTLS_SSL_TLS_C
|
|
||||||
#define MBEDTLS_X509_CRT_PARSE_C
|
|
||||||
#define MBEDTLS_X509_USE_C
|
|
||||||
#define MBEDTLS_AES_FEWER_TABLES
|
|
||||||
|
|
||||||
/* TLS 1.2 */
|
|
||||||
#define MBEDTLS_SSL_PROTO_TLS1_2
|
|
||||||
#define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
|
|
||||||
#define MBEDTLS_GCM_C
|
|
||||||
#define MBEDTLS_ECDH_C
|
|
||||||
#define MBEDTLS_ECP_C
|
|
||||||
#define MBEDTLS_ECDSA_C
|
|
||||||
#define MBEDTLS_ASN1_WRITE_C
|
|
||||||
|
|
||||||
// The following is needed to parse a certificate
|
|
||||||
#define MBEDTLS_PEM_PARSE_C
|
|
||||||
#define MBEDTLS_BASE64_C
|
|
||||||
|
|
||||||
// The following significantly speeds up mbedtls due to NIST optimizations.
|
|
||||||
#define MBEDTLS_ECP_NIST_OPTIM
|
|
||||||
|
|
||||||
#endif
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue