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-03 12:04:52 +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-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"
|
2020-09-22 06:54:01 -07:00
|
|
|
#include "test/drivers/size.h"
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|