1a8e1175bSopenharmony_ci/** 2a8e1175bSopenharmony_ci * \file psa/crypto_adjust_auto_enabled.h 3a8e1175bSopenharmony_ci * \brief Adjust PSA configuration: enable always-on features 4a8e1175bSopenharmony_ci * 5a8e1175bSopenharmony_ci * Always enable certain features which require a negligible amount of code 6a8e1175bSopenharmony_ci * to implement, to avoid some edge cases in the configuration combinatorics. 7a8e1175bSopenharmony_ci */ 8a8e1175bSopenharmony_ci/* 9a8e1175bSopenharmony_ci * Copyright The Mbed TLS Contributors 10a8e1175bSopenharmony_ci * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 11a8e1175bSopenharmony_ci */ 12a8e1175bSopenharmony_ci 13a8e1175bSopenharmony_ci#ifndef PSA_CRYPTO_ADJUST_AUTO_ENABLED_H 14a8e1175bSopenharmony_ci#define PSA_CRYPTO_ADJUST_AUTO_ENABLED_H 15a8e1175bSopenharmony_ci 16a8e1175bSopenharmony_ci#define PSA_WANT_KEY_TYPE_DERIVE 1 17a8e1175bSopenharmony_ci#define PSA_WANT_KEY_TYPE_PASSWORD 1 18a8e1175bSopenharmony_ci#define PSA_WANT_KEY_TYPE_PASSWORD_HASH 1 19a8e1175bSopenharmony_ci#define PSA_WANT_KEY_TYPE_RAW_DATA 1 20a8e1175bSopenharmony_ci 21a8e1175bSopenharmony_ci#endif /* PSA_CRYPTO_ADJUST_AUTO_ENABLED_H */ 22