2020-07-16 20:26:18 +02:00
|
|
|
/*
|
|
|
|
* Umbrella include for all of the test driver functionality
|
|
|
|
*/
|
2020-09-02 13:43:46 +02:00
|
|
|
/* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2020-07-16 20:26:18 +02:00
|
|
|
*/
|
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#ifndef PSA_CRYPTO_TEST_DRIVER_H
|
|
|
|
#define PSA_CRYPTO_TEST_DRIVER_H
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2021-12-24 12:50:36 +05:30
|
|
|
#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
|
|
|
|
|
2021-03-18 20:49:29 +01:00
|
|
|
#define PSA_CRYPTO_TEST_DRIVER_LOCATION 0x7fffff
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2021-03-17 16:08:20 +01:00
|
|
|
#include "test/drivers/aead.h"
|
2020-07-28 18:49:51 +02:00
|
|
|
#include "test/drivers/cipher.h"
|
2021-03-23 09:33:25 +01:00
|
|
|
#include "test/drivers/hash.h"
|
2021-04-29 21:10:11 +02:00
|
|
|
#include "test/drivers/mac.h"
|
2021-03-23 09:33:25 +01:00
|
|
|
#include "test/drivers/key_management.h"
|
|
|
|
#include "test/drivers/signature.h"
|
2022-03-07 10:14:07 +01:00
|
|
|
#include "test/drivers/asymmetric_encryption.h"
|
2022-10-13 17:21:01 +01:00
|
|
|
#include "test/drivers/key_agreement.h"
|
2022-11-22 14:11:31 +01:00
|
|
|
#include "test/drivers/pake.h"
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2021-12-24 12:50:36 +05:30
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|