mirror of
https://github.com/cuberite/polarssl.git
synced 2025-08-23 13:00:43 -04:00
26 lines
592 B
C
26 lines
592 B
C
/*
|
|
* Test driver for context size functions
|
|
*/
|
|
/* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PSA_CRYPTO_TEST_DRIVERS_SIZE_H
|
|
#define PSA_CRYPTO_TEST_DRIVERS_SIZE_H
|
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
#include "mbedtls/config.h"
|
|
#else
|
|
#include MBEDTLS_CONFIG_FILE
|
|
#endif
|
|
|
|
#if defined(PSA_CRYPTO_DRIVER_TEST)
|
|
#include <psa/crypto_driver_common.h>
|
|
|
|
size_t mbedtls_test_size_function(
|
|
const psa_key_type_t key_type,
|
|
const size_t key_bits);
|
|
|
|
#endif /* PSA_CRYPTO_DRIVER_TEST */
|
|
#endif /* PSA_CRYPTO_TEST_DRIVERS_SIZE_H */
|