blob: 64d1f949064971a9cc51269b15cdd95f7b903f55 [file] [log] [blame]
Steven Cooremana70d5882020-07-16 20:26:18 +02001/*
2 * Umbrella include for all of the test driver functionality
3 */
Steven Cooreman2c7b2f82020-09-02 13:43:46 +02004/* Copyright The Mbed TLS Contributors
Dave Rodgman7ff79652023-11-03 12:04:52 +00005 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Steven Cooremana70d5882020-07-16 20:26:18 +02006 */
7
Steven Cooremanf1720ea2020-07-24 18:41:58 +02008#ifndef PSA_CRYPTO_TEST_DRIVER_H
9#define PSA_CRYPTO_TEST_DRIVER_H
Steven Cooremana70d5882020-07-16 20:26:18 +020010
Steven Cooremana1ce2f22021-03-18 20:49:29 +010011#define PSA_CRYPTO_TEST_DRIVER_LOCATION 0x7fffff
Steven Cooremana70d5882020-07-16 20:26:18 +020012
Ronald Cronde822812021-03-17 16:08:20 +010013#include "test/drivers/aead.h"
Steven Cooreman37941cb2020-07-28 18:49:51 +020014#include "test/drivers/cipher.h"
Ronald Cron0bec41a2021-03-23 09:33:25 +010015#include "test/drivers/hash.h"
Steven Cooreman2d9a3f92021-04-29 21:10:11 +020016#include "test/drivers/mac.h"
Ronald Cron0bec41a2021-03-23 09:33:25 +010017#include "test/drivers/key_management.h"
18#include "test/drivers/signature.h"
John Durkop2c618352020-09-22 06:54:01 -070019#include "test/drivers/size.h"
Steven Cooremana70d5882020-07-16 20:26:18 +020020
Steven Cooremanf1720ea2020-07-24 18:41:58 +020021#endif /* PSA_CRYPTO_TEST_DRIVER_H */