1 /**
2  * \file config-symmetric-only.h
3  *
4  * \brief Configuration without any asymmetric cryptography.
5  */
6 /*
7  *  Copyright The Mbed TLS Contributors
8  *  SPDX-License-Identifier: Apache-2.0
9  *
10  *  Licensed under the Apache License, Version 2.0 (the "License"); you may
11  *  not use this file except in compliance with the License.
12  *  You may obtain a copy of the License at
13  *
14  *  http://www.apache.org/licenses/LICENSE-2.0
15  *
16  *  Unless required by applicable law or agreed to in writing, software
17  *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18  *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  *  See the License for the specific language governing permissions and
20  *  limitations under the License.
21  */
22 
23 #ifndef MBEDTLS_CONFIG_H
24 #define MBEDTLS_CONFIG_H
25 
26 /* System support */
27 //#define MBEDTLS_HAVE_ASM
28 #define MBEDTLS_HAVE_TIME
29 #define MBEDTLS_HAVE_TIME_DATE
30 
31 /* Mbed Crypto feature support */
32 #define MBEDTLS_CIPHER_MODE_CBC
33 #define MBEDTLS_CIPHER_MODE_CFB
34 #define MBEDTLS_CIPHER_MODE_CTR
35 #define MBEDTLS_CIPHER_MODE_OFB
36 #define MBEDTLS_CIPHER_MODE_XTS
37 #define MBEDTLS_CIPHER_PADDING_PKCS7
38 #define MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS
39 #define MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN
40 #define MBEDTLS_CIPHER_PADDING_ZEROS
41 #define MBEDTLS_ERROR_STRERROR_DUMMY
42 #define MBEDTLS_FS_IO
43 #define MBEDTLS_ENTROPY_NV_SEED
44 #define MBEDTLS_SELF_TEST
45 #define MBEDTLS_USE_PSA_CRYPTO
46 #define MBEDTLS_VERSION_FEATURES
47 
48 /* Mbed Crypto modules */
49 #define MBEDTLS_AES_C
50 #define MBEDTLS_ARC4_C
51 #define MBEDTLS_ASN1_PARSE_C
52 #define MBEDTLS_ASN1_WRITE_C
53 #define MBEDTLS_BASE64_C
54 #define MBEDTLS_BLOWFISH_C
55 #define MBEDTLS_CAMELLIA_C
56 #define MBEDTLS_ARIA_C
57 #define MBEDTLS_CCM_C
58 #define MBEDTLS_CHACHA20_C
59 #define MBEDTLS_CHACHAPOLY_C
60 #define MBEDTLS_CIPHER_C
61 #define MBEDTLS_CMAC_C
62 #define MBEDTLS_CTR_DRBG_C
63 #define MBEDTLS_DES_C
64 #define MBEDTLS_ENTROPY_C
65 #define MBEDTLS_ERROR_C
66 #define MBEDTLS_GCM_C
67 //#define MBEDTLS_HAVEGE_C
68 #define MBEDTLS_HKDF_C
69 #define MBEDTLS_HMAC_DRBG_C
70 #define MBEDTLS_NIST_KW_C
71 #define MBEDTLS_MD_C
72 #define MBEDTLS_MD2_C
73 #define MBEDTLS_MD4_C
74 #define MBEDTLS_MD5_C
75 #define MBEDTLS_OID_C
76 #define MBEDTLS_PEM_PARSE_C
77 #define MBEDTLS_PEM_WRITE_C
78 #define MBEDTLS_PKCS5_C
79 #define MBEDTLS_PKCS12_C
80 #define MBEDTLS_PLATFORM_C
81 #define MBEDTLS_POLY1305_C
82 #define MBEDTLS_PSA_CRYPTO_C
83 #define MBEDTLS_PSA_CRYPTO_SE_C
84 #define MBEDTLS_PSA_CRYPTO_STORAGE_C
85 #define MBEDTLS_PSA_ITS_FILE_C
86 #define MBEDTLS_RIPEMD160_C
87 #define MBEDTLS_SHA1_C
88 #define MBEDTLS_SHA256_C
89 #define MBEDTLS_SHA512_C
90 //#define MBEDTLS_THREADING_C
91 #define MBEDTLS_TIMING_C
92 #define MBEDTLS_VERSION_C
93 #define MBEDTLS_XTEA_C
94 
95 #include "mbedtls/config_psa.h"
96 
97 #include "check_config.h"
98 
99 #endif /* MBEDTLS_CONFIG_H */
100