Files
wolfssl/IDE/Espressif/ESP-IDF/test
Sean Parkinson 411aee6e05 Fixes from cppcheck
Added PRIVATE_D version of rsa private key operation for SP
implementation for specific platforms.
WC_NO_RNG results in warnings when RNG calls don't do anything.
Added ifdef checks for variables not used otherwise.
Remove superfluous if statements like when checking ret == 0.
Change names of globals that are generic and are used locally before
global definition.
Remove definition of variable len that isn't used except as a
replacement for sz which is parameter.
Don't subtract two variables when one has just been assigned the value
of the other.
Fix shifting of signed value.
Fix parameter checking in aes.c and des3.c for platform specific code.
2020-04-08 09:46:22 +10:00
..
2020-04-08 09:46:22 +10:00

wolfSSL unit-test app

The test contains of wolfSSL unit-test app on Unity.

When you want to run the app

  1. Copy test.c file at /path/to/esp-idf/components/wolfssl/wolfcrypt/test/ folder to the wolfssl/test folder
  2. Go to /esp-idf/tools/unit-test-app/ folder
  3. "make menuconfig" to configure unit test app.
  4. "make TEST_COMPONENTS=wolfssl" to build wolfssl unit test app.

See [https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/unit-tests.html] for more information about unit test app.