1*b0563631STom Van Eyck /** 2*b0563631STom Van Eyck * \file psa/build_info.h 3*b0563631STom Van Eyck * 4*b0563631STom Van Eyck * \brief Build-time PSA configuration info 5*b0563631STom Van Eyck * 6*b0563631STom Van Eyck * Include this file if you need to depend on the 7*b0563631STom Van Eyck * configuration options defined in mbedtls_config.h or MBEDTLS_CONFIG_FILE 8*b0563631STom Van Eyck * in PSA cryptography core specific files. 9*b0563631STom Van Eyck */ 10*b0563631STom Van Eyck /* 11*b0563631STom Van Eyck * Copyright The Mbed TLS Contributors 12*b0563631STom Van Eyck * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 13*b0563631STom Van Eyck */ 14*b0563631STom Van Eyck 15*b0563631STom Van Eyck #ifndef PSA_CRYPTO_BUILD_INFO_H 16*b0563631STom Van Eyck #define PSA_CRYPTO_BUILD_INFO_H 17*b0563631STom Van Eyck 18*b0563631STom Van Eyck #include "mbedtls/build_info.h" 19*b0563631STom Van Eyck 20*b0563631STom Van Eyck #endif /* PSA_CRYPTO_BUILD_INFO_H */ 21