mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
* improvements for cross-platform compiling * moved tactility-core to libs/ * splitup improvements * remove git/gitmodules from freertos * better platformbetter platform checks * added build scripts * delete mbedtls * re-add mbedtls * fixes and improvements * added pc build * simplify build scripts * revert build scrpit * updated builds * fix for pc * fix for pc * fix for build
33 lines
897 B
C
33 lines
897 B
C
/*
|
|
* Umbrella include for all of the test driver functionality
|
|
*/
|
|
/* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PSA_CRYPTO_TEST_DRIVER_H
|
|
#define PSA_CRYPTO_TEST_DRIVER_H
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
#ifndef PSA_CRYPTO_DRIVER_PRESENT
|
|
#define PSA_CRYPTO_DRIVER_PRESENT
|
|
#endif
|
|
#ifndef PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
|
#define PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT
|
|
#endif
|
|
|
|
#define PSA_CRYPTO_TEST_DRIVER_LOCATION 0x7fffff
|
|
|
|
#include "test/drivers/aead.h"
|
|
#include "test/drivers/cipher.h"
|
|
#include "test/drivers/hash.h"
|
|
#include "test/drivers/mac.h"
|
|
#include "test/drivers/key_management.h"
|
|
#include "test/drivers/signature.h"
|
|
#include "test/drivers/asymmetric_encryption.h"
|
|
#include "test/drivers/key_agreement.h"
|
|
#include "test/drivers/pake.h"
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|