#include <stddef.h> #include <string.h> #include "psa_crypto_driver_wrappers_no_static.h" #if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) 4 changes: 2 additions & 2 deletions 4 docs/architecture/psa-crypto-implementation-structure.md Original file line numberDiff line numberDiff line change...
An open source, portable, easy to use, readable and flexible SSL library - mbedtls/library/camellia.c at test-more-USE_PSA_CRYPTO-20240812-3.6 · gilles-peskine-arm/mbedtls
3. Conditionally include header files required by the driverInclude any header files required by the driver inpsa_crypto_driver_wrappers.h, placing the#includestatements within an#if definedblock which checks if the driver is available: #if defined(DRIVER_PREFIX_ENABLED) #include ... #endif 4...
check framework/scripts/generate_test_keys.py framework/tests/src/test_keys.h check scripts/generate_driver_wrappers.py ${crypto_core_dir}/psa_crypto_driver_wrappers.h \ ${crypto_core_dir}/psa_crypto_driver_wrappers_no_static.c 0 comments on commit cbd00b0 Please sign in to comment. Foot...
4. For each operation being accelerated, locate the function in the driver dispatch layer that corresponds to the entry point of that operation. The file psa_crypto_driver_wrappers.h.jinja and psa_crypto_driver_wrappers_no_static.c.jinja contains the driver wrapper functions. For th...