Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Software-only support for recent esp32 targets #6256

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Commits on Mar 31, 2023

  1. make wolfcrypt use generic esp apis instead of arch specifics

    This makes it build for all targets supported by esp-idf v4.4, without
    hardware acceleration. Specifying the target in user_settings.h is only
    required for hw accel.
    dpalffy committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    1af5ea5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a45684c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    09de0c0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    73edfc9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2af15f0 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2023

  1. Configuration menu
    Copy the full SHA
    80b1b82 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

  1. Configuration menu
    Copy the full SHA
    969ee0b View commit details
    Browse the repository at this point in the history
  2. clean up ESP32 hw crypto related defines

    - remove WROOM32 from all defines except WROOM32SE-related ones, those are
    not WROOM32-related, they refer to the built-in crypto accelerator of the
    ESP32.
    - enable hw crypto automatically on ESP32 based on CONFIG_IDF_TARGET_ESP32
    - disable switches:
      - NO_ESP32_CRYPT
      - NO_WOLFSSL_ESP32_CRYPT_RSA_PRI
      - NO_WOLFSSL_ESP32_CRYPT_HASH
      - NO_WOLFSSL_ESP32_CRYPT_AES
    - set enable switches based on the above in settings.h and use those only:
      - WOLFSSL_ESP32_CRYPT_RSA_PRI
      - WOLFSSL_ESP32_CRYPT_HASH
      - WOLFSSL_ESP32_CRYPT_AES
    - rename WOLFSSL_ESP32WROOM32_CRYPT_DEBUG to WOLFSSL_ESP32_CRYPT_DEBUG
    - some other minor cleanups
    dpalffy committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    fabb44f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1c042b View commit details
    Browse the repository at this point in the history