mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-20 19:21:09 +01:00
We already have `x509_internal.h` which is common to all parts of the X.509 library, and `ssl_misc.h` which is common to all parts of the TLS library. Also create `mbedtls_common.h` which is for the Mbed TLS project as a whole. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
18 lines
391 B
C
18 lines
391 B
C
/**
|
|
* \file mbedtls_common.h
|
|
*
|
|
* \brief Utility macros for internal use in the library
|
|
*/
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef MBEDTLS_MBEDTLS_COMMON_H
|
|
#define MBEDTLS_MBEDTLS_COMMON_H
|
|
|
|
/* Mbed TLS requires TF-PSA-Crypto internals. */
|
|
#include "tf_psa_crypto_common.h"
|
|
|
|
#endif /* MBEDTLS_MBEDTLS_COMMON_H */
|