mirror of
https://github.com/cuberite/polarssl.git
synced 2025-10-12 15:13:16 -04:00

Move all the header files (roughly the crypto and platform ones) necessary to build the crypto library to tf-psa-crypto/drivers/builtin/include/mbedtls. Exceptions: . some configuration related files that will not be necessary anymore when the work on the configuration file(s) is completed. . build_info.h as TF-PSA-Crypto will have its own when we had its CMake build system. For the time being all headers are kept public but eventually all headers in tf-psa-crypto/drivers/builtin/include/mbedtls will be private and the ones that remain public (e.g. lms.h, pk.h probably ...) will be moved to tf-psa-crypto/include/tf-psa-crypto/. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
21 lines
435 B
C
21 lines
435 B
C
/**
|
|
* \file private_access.h
|
|
*
|
|
* \brief Macro wrapper for struct's members.
|
|
*/
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef MBEDTLS_PRIVATE_ACCESS_H
|
|
#define MBEDTLS_PRIVATE_ACCESS_H
|
|
|
|
#ifndef MBEDTLS_ALLOW_PRIVATE_ACCESS
|
|
#define MBEDTLS_PRIVATE(member) private_##member
|
|
#else
|
|
#define MBEDTLS_PRIVATE(member) member
|
|
#endif
|
|
|
|
#endif /* MBEDTLS_PRIVATE_ACCESS_H */
|