blob: 6c12bd7b68d9b9036707be6cc1cfb59accc976c6 [file] [log] [blame]
Ronald Crone501d0e2023-07-10 08:31:19 +02001/**
Ronald Cron2b25d362023-07-20 09:09:10 +02002 * \file configs/crypto-config-ccm-aes-sha256.h
Ronald Crone501d0e2023-07-10 08:31:19 +02003 *
4 * \brief PSA crypto configuration with only symmetric cryptography: CCM-AES,
5 * SHA-256, HMAC and key derivation
6 */
7/*
8 * Copyright The Mbed TLS Contributors
9 * SPDX-License-Identifier: Apache-2.0
10 *
11 * Licensed under the Apache License, Version 2.0 (the "License"); you may
12 * not use this file except in compliance with the License.
13 * You may obtain a copy of the License at
14 *
15 * http://www.apache.org/licenses/LICENSE-2.0
16 *
17 * Unless required by applicable law or agreed to in writing, software
18 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
19 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 * See the License for the specific language governing permissions and
21 * limitations under the License.
22 */
23
24#ifndef PSA_CRYPTO_CONFIG_H
25#define PSA_CRYPTO_CONFIG_H
26
27#define PSA_WANT_ALG_CCM 1
28#define PSA_WANT_ALG_HMAC 1
29#define PSA_WANT_ALG_SHA_256 1
30#define PSA_WANT_ALG_TLS12_PRF 1
31#define PSA_WANT_ALG_TLS12_PSK_TO_MS 1
32#define PSA_WANT_KEY_TYPE_DERIVE 1
33#define PSA_WANT_KEY_TYPE_HMAC 1
34#define PSA_WANT_KEY_TYPE_AES 1
35#define PSA_WANT_KEY_TYPE_RAW_DATA 1
36
37#endif /* PSA_CRYPTO_CONFIG_H */