blob: e2618d15dc230f3d3b0292709186d5e534566358 [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 *
Gilles Peskinee0ec8f52024-04-26 14:18:10 +02005 * This is an internal header. Do not include it directly.
6 *
Gilles Peskine58239772023-09-04 16:56:06 +02007 * Always enable certain features which require a negligible amount of code
8 * to implement, to avoid some edge cases in the configuration combinatorics.
9 */
10/*
11 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +000012 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskine58239772023-09-04 16:56:06 +020013 */
14
15#ifndef PSA_CRYPTO_ADJUST_AUTO_ENABLED_H
16#define PSA_CRYPTO_ADJUST_AUTO_ENABLED_H
17
18#define PSA_WANT_KEY_TYPE_DERIVE 1
19#define PSA_WANT_KEY_TYPE_PASSWORD 1
20#define PSA_WANT_KEY_TYPE_PASSWORD_HASH 1
21#define PSA_WANT_KEY_TYPE_RAW_DATA 1
22
23#endif /* PSA_CRYPTO_ADJUST_AUTO_ENABLED_H */