2023-07-10 06:31:19 +00:00
|
|
|
/**
|
2023-07-20 07:09:10 +00:00
|
|
|
* \file configs/crypto-config-ccm-aes-sha256.h
|
2023-07-10 06:31:19 +00:00
|
|
|
*
|
|
|
|
* \brief PSA crypto configuration with only symmetric cryptography: CCM-AES,
|
2024-05-15 07:27:27 +00:00
|
|
|
* SHA-256 and key derivation (uses HMAC).
|
2023-07-10 06:31:19 +00:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2023-07-10 06:31:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PSA_CRYPTO_CONFIG_H
|
|
|
|
#define PSA_CRYPTO_CONFIG_H
|
|
|
|
|
|
|
|
#define PSA_WANT_ALG_CCM 1
|
|
|
|
#define PSA_WANT_ALG_SHA_256 1
|
|
|
|
#define PSA_WANT_ALG_TLS12_PRF 1
|
|
|
|
#define PSA_WANT_ALG_TLS12_PSK_TO_MS 1
|
|
|
|
#define PSA_WANT_KEY_TYPE_DERIVE 1
|
|
|
|
#define PSA_WANT_KEY_TYPE_AES 1
|
|
|
|
#define PSA_WANT_KEY_TYPE_RAW_DATA 1
|
|
|
|
|
2024-12-02 23:57:30 +00:00
|
|
|
|
|
|
|
#define MBEDTLS_PSA_CRYPTO_C
|
|
|
|
#define MBEDTLS_CTR_DRBG_C
|
|
|
|
#define MBEDTLS_ENTROPY_C
|
|
|
|
|
2023-07-10 06:31:19 +00:00
|
|
|
#endif /* PSA_CRYPTO_CONFIG_H */
|