19 Commits

Author SHA1 Message Date
cf256a2b16 fix(tls): wolfSSL_set_tlsext_host_name function not support in wolfssl lib in ESP8266, so use macro HAVE_SNI to disable it. 2020-03-31 11:48:31 +08:00
0cd33eaea1 feat(tls): update esp-tls and tcp_transport from idf
Commit ID:88bf21b2
2020-03-27 14:46:18 +08:00
66e746d767 fix(esp-tls): fix esp-tls compiling error
Closes https://github.com/espressif/ESP8266_RTOS_SDK/issues/828
2020-02-17 11:36:48 +08:00
adf0fde745 feat(esp-tls): modify esp-tls structure members' offset of platform dependece 2019-12-10 14:26:22 +08:00
19529e4f35 feat(esp-wolfssl): add esp-wolfssl component
It is from original component "ssl".
2019-11-29 14:08:46 +08:00
7a30e6c072 feat(esp-tls): modify for esp8266 2019-11-19 16:43:38 +08:00
595b51b15f feat(esp-tls): update esp-tls from esp-idf
Commit ID: 03d07741
2019-11-19 16:22:27 +08:00
1f8192d9f9 feat(exmaples): remove wolfSSL example
The wolfSSL example will be supplied independently.
2019-10-10 15:43:29 +08:00
5f2b5eafcf feat(mbedtls): modify code to support ESP8266
It is that maybe less modification working on the components is better, so I just modified the platform
code of AES, SHA and so on.

ESP8266 has no real hardware AES, SHA or bignum peripheral, but some method can speed up the process of part
of upper algorithm, so I also added the platform code of AES, SHA, bignum, ARC, MD5.

ESP8266 has no platform of bignum, so users should not enable the bignum hardware at "menuconfig".
2019-10-10 13:39:08 +08:00
9ca3428e79 feat(wolfssl): Make wolfssl support TLSv1.0, TLSv1.1, TLSv1.2 protocols 2019-08-22 19:29:20 +08:00
d6acfca78c fix(cmake): fix cmake requires 2019-05-31 15:03:16 +08:00
279d3cd9b0 feat(esp-tls): Modify for ESP8266
1. Add wolfSSL library in esp_tls component
2. Added wolfssl support to http-client & ota.
3. Client, OTA examples fixed. Bug fixes in esp-tls wolfssl support.
4. Fix a bug of esp_tls when work on no-block mode
5. Add macro to disable ipv6 configuration
6. Modify "read" and "write" of esp_tls structure to pass compiling
2019-05-23 17:58:57 +08:00
e3c6494361 feat(esp-tls): Sync code from esp-idf
1. Add support to add CN from config and validate PEM buffers
2. Fix incorrect closing of fd 0 on connection failure
3. Add esp_tls_init_global_ca_store function to esp-tls, called from esp_tls_set_global_ca_store. Signed-off-by: Chirag Atal <chirag.Atal@espressif.Com>
4. Add checks to for CONFIG_MBEDTLS_SSL_ALPN
5. Mqtt: ssl mutual authentication example added per PR from github, corrected cmake build, updated per idf style
2019-05-23 17:50:34 +08:00
cca13e0f99 feat(make): Sync code from esp-idf and modify for ESP8266
Commit ID: f6bfe13e
2019-05-16 16:22:11 +08:00
8b5cd285ce feat(esp_tls): Fix a bug of esp_tls when work on no-block mode 2019-04-18 14:41:34 +08:00
0c16744f2b feat/wolfssl_http_client: Added wolfssl support to http-client & ota.
Changes:
Client, OTA examples fixed. Bug fixes in esp-tls wolfssl support.
2019-03-16 17:04:18 +05:30
7cb954abc8 feat: Add wolfSSL library in esp_tls component 2019-01-30 09:14:17 +08:00
98e7dfa8dc feat(esp-tls): Add macro to disable ipv6 configuration
If LWIP_IPV6 enables, esp-tls can use IPv6 configuration.
2018-12-25 14:04:56 +08:00
39d1dae06c esp-tls: Add support for simplified TLS
This is based on from esp-idf's esp-tls component.

Latest commit ID on esp-idf: dec70a760120d3c6d1d63ac0257dce6a8561879c

Some HTTP convenience APIs have been removed from esp-idf's esp-tls component while porting it ESP8266-RTOS-SDK due to
non-availabilty of http_parser
2018-12-20 12:25:23 +05:30