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
|
2020-07-16 20:26:18 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#define PSA_CRYPTO_TEST_DRIVER_LIFETIME 0x7fffff
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2020-09-07 16:17:55 +02:00
|
|
|
#include "test/drivers/signature.h"
|
2020-10-23 11:45:43 +02:00
|
|
|
#include "test/drivers/key_management.h"
|
2020-07-28 18:49:51 +02:00
|
|
|
#include "test/drivers/cipher.h"
|
2020-09-22 15:54:01 +02:00
|
|
|
#include "test/drivers/size.h"
|
2021-03-04 15:14:36 +01:00
|
|
|
#include "test/drivers/hash.h"
|
2020-07-16 20:26:18 +02:00
|
|
|
|
2020-07-24 18:41:58 +02:00
|
|
|
#endif /* PSA_CRYPTO_TEST_DRIVER_H */
|