Skip to content

espressif/esp-wolfssl

Repository files navigation

ESP-WOLFSSL

Licensing


IMPORTANT NOTE

Until March 2021, this repository contained binary distribution of wolfSSL libraries, which could be used royalty-free on all Espressif MCU products. This royalty-free binary distribution is not available anymore.

This repository now uses upstream wolfSSL GitHub pointer as submodule and can still be used as ESP-IDF component. Please follow licensing requirements per wolfssl/LICENSING


Requirements

Getting Started

  • Please clone this repository using,
git clone --recursive https://github.com/espressif/esp-wolfssl

Options (Debugging and more)

  • esp-wolfssl esp-tls related options can be obtained by choosing SSL library as wolfSSL in idf.py/make menuconfig -> Component Config -> ESP-TLS -> choose SSL Library . It shows following options

    • Enable SMALL_CERT_VERIFY

      • This is a flag used in wolfSSL component and is enabled by default in esp-wolfssl.
      • Enabling this flag allows user to authenticate the server by providing the Intermediate CA certificate of the server, for a more strict check disable this flag after which you will have to provide the root certificate at top of the hierarchy of certificate chain which will have Common Name = Issuer Name, Such a strict check is not compulsary in most cases hence by default the flag is enabled but the option is provided for the user.
    • Enable Debug Logs for wolfSSL

      • This option prints detailed logs of all the internal operations, highly useful when debugging an error.
  • esp-wolfssl specific options (see NOTE) are available under idf.py/make menuconfig -> Component Config -> wolfSSL.

    • Enable ALPN ( Application Layer Protocol Negotiation ) in wolfSSL

      • This option is enabled by default for wolfSSL, and can be disabled if not required.
    • Enable OCSP (Online Certificate Status Protocol) in wolfSSL

      • This options is disabled by default. Enabling it adds support for checking the host's certificate revocation status during the TLS handshake.

NOTE These options are valid for esp-tls only if wolfSSL is selected as its SSL/TLS Library.

Comparison of wolfSSL and mbedTLS

The following table shows a typical comparison between wolfSSL and mbedtls when https_request (which has server authentication) was run with both SSL/TLS libraries and with all respective configurations set to default. (mbedtls IN_CONTENT length and OUT_CONTENT length were set to 16384 bytes and 4096 bytes respectively)

Property wolfSSL mbedTLS
Total Heap Consumed ~19 Kb ~37 Kb
Task Stack Used ~2.2 Kb ~3.6 Kb
Bin size ~858 Kb ~736 Kb

Additional Pointers

In general, these are links which will be useful for using both wolfSSL, as well as networked and secure applications in general. Furthermore, there is a more comprehensive tutorial that can be found in Chapter 11 of the official wolfSSL manual. The examples in the wolfSSL package and Chapter 11 do appropriate error checking, which is worth taking a look at. For a more comprehensive API, check out chapter 17 of the official manual.

About

WolfSSL port for ESP-IDF & ESP8266_RTOS_SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published