mirror of
https://github.com/cuberite/polarssl.git
synced 2025-08-23 21:12:44 -04:00
22 lines
562 B
C
22 lines
562 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
|
|
|
|
#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/size.h"
|
|
|
|
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|