blob: 63fb29e85bf16a0c446f056b2501c027f152fbb1 [file] [log] [blame]
Tom Rini0344c602024-10-08 13:56:50 -06001/**
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 OR GPL-2.0-or-later
11 */
12
13#ifndef PSA_CRYPTO_ADJUST_AUTO_ENABLED_H
14#define PSA_CRYPTO_ADJUST_AUTO_ENABLED_H
15
16#define PSA_WANT_KEY_TYPE_DERIVE 1
17#define PSA_WANT_KEY_TYPE_PASSWORD 1
18#define PSA_WANT_KEY_TYPE_PASSWORD_HASH 1
19#define PSA_WANT_KEY_TYPE_RAW_DATA 1
20
21#endif /* PSA_CRYPTO_ADJUST_AUTO_ENABLED_H */