blob: 5e18298c65c45499718bab9d9c02d79811e9ce7c [file] [log] [blame]
Gilles Peskine58239772023-09-04 16:56:06 +02001/**
2 * \file psa/crypto_adjust_auto_enabled.h
3 * \brief Adjust PSA configuration: enable always-on features
4 *
5 * Always enable certain features which require a negligible amount of code
6 * to implement, to avoid some edge cases in the configuration combinatorics.
7 */
8/*
9 * Copyright The Mbed TLS Contributors
10 * SPDX-License-Identifier: Apache-2.0
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License"); you may
13 * not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
20 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 */
24
25#ifndef PSA_CRYPTO_ADJUST_AUTO_ENABLED_H
26#define PSA_CRYPTO_ADJUST_AUTO_ENABLED_H
27
28#define PSA_WANT_KEY_TYPE_DERIVE 1
29#define PSA_WANT_KEY_TYPE_PASSWORD 1
30#define PSA_WANT_KEY_TYPE_PASSWORD_HASH 1
31#define PSA_WANT_KEY_TYPE_RAW_DATA 1
32
33#endif /* PSA_CRYPTO_ADJUST_AUTO_ENABLED_H */