values.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2025 TU Dresden
3  * SPDX-FileCopyrightText: 2021 HAW Hamburg
4  * SPDX-License-Identifier: LGPL-2.1-only
5  */
6 
7 #pragma once
8 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
31 #ifndef CONFIG_PSA_ASYMMETRIC_KEYPAIR_COUNT
32 #define CONFIG_PSA_ASYMMETRIC_KEYPAIR_COUNT 0
33 #endif
34 
41 #ifndef CONFIG_PSA_SINGLE_KEY_COUNT
42 #define CONFIG_PSA_SINGLE_KEY_COUNT 0
43 #endif
44 
51 #ifndef CONFIG_PSA_PROTECTED_KEY_COUNT
52 #if (IS_USED(MODULE_PSA_SECURE_ELEMENT))
53 #define CONFIG_PSA_PROTECTED_KEY_COUNT 5
54 #else
55 #define CONFIG_PSA_PROTECTED_KEY_COUNT 0
56 #endif
57 #endif
58 
59 #ifdef __cplusplus
60 }
61 #endif
62