mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-03-07 01:14:03 +01:00
* PSA: set AES key bits, define PSA_ALG_NONE/PSA_KEY_ID_NULL if needed * Zephyr: add TimeNowInMilliseconds() for tls13.c, clock_settime() for test.c, update CMakeLists.txt * Skip including unistd.h for Zephyr in benchmark.c * Zephyr: update README, add nRF5340dk support to wolfssl_test sample app * Zephyr: add wolfCrypt benchmark sample app * Zephyr: add nRF5340 support to tls_thread sample app * PSA: use specific hash algo with psa_sign/verify_hash() * Zephyr: add support for PSA Crypto API with PK callbacks to wolfssl_tls_threaded sample app * Zephyr: add new files to zephyr/include.am
27 lines
486 B
Plaintext
27 lines
486 B
Plaintext
|
|
# Configure stack and heap sizes
|
|
CONFIG_MAIN_STACK_SIZE=32768
|
|
CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE=16384
|
|
|
|
# Clock for time()
|
|
CONFIG_POSIX_CLOCK=y
|
|
|
|
# TLS configuration
|
|
CONFIG_WOLFSSL=y
|
|
CONFIG_WOLFSSL_BUILTIN=y
|
|
|
|
# Logging
|
|
CONFIG_PRINTK=y
|
|
CONFIG_CBPRINTF_LIBC_SUBSTS=y
|
|
CONFIG_CBPRINTF_FP_SUPPORT=y
|
|
CONFIG_CONSOLE=y
|
|
CONFIG_LOG=y
|
|
CONFIG_LOG_BACKEND_UART=y
|
|
CONFIG_LOG_BUFFER_SIZE=15360
|
|
#CONFIG_WOLFSSL_DEBUG=y
|
|
|
|
# Entropy
|
|
CONFIG_ENTROPY_GENERATOR=y
|
|
CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR=y
|
|
|