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 /* System support */ 24 //#define MBEDTLS_HAVE_ASM 25 #define MBEDTLS_HAVE_TIME 26 #define MBEDTLS_HAVE_TIME_DATE 27 28 /* Mbed Crypto feature support */ 29 #define MBEDTLS_CIPHER_MODE_CBC 30 #define MBEDTLS_CIPHER_MODE_CFB 31 #define MBEDTLS_CIPHER_MODE_CTR 32 #define MBEDTLS_CIPHER_MODE_OFB 33 #define MBEDTLS_CIPHER_MODE_XTS 34 #define MBEDTLS_CIPHER_PADDING_PKCS7 35 #define MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS 36 #define MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN 37 #define MBEDTLS_CIPHER_PADDING_ZEROS 38 #define MBEDTLS_ERROR_STRERROR_DUMMY 39 #define MBEDTLS_FS_IO 40 #define MBEDTLS_ENTROPY_NV_SEED 41 #define MBEDTLS_SELF_TEST 42 #define MBEDTLS_USE_PSA_CRYPTO 43 #define MBEDTLS_VERSION_FEATURES 44 45 /* Mbed Crypto modules */ 46 #define MBEDTLS_AES_C 47 #define MBEDTLS_ASN1_PARSE_C 48 #define MBEDTLS_ASN1_WRITE_C 49 #define MBEDTLS_BASE64_C 50 #define MBEDTLS_CAMELLIA_C 51 #define MBEDTLS_ARIA_C 52 #define MBEDTLS_CCM_C 53 #define MBEDTLS_CHACHA20_C 54 #define MBEDTLS_CHACHAPOLY_C 55 #define MBEDTLS_CIPHER_C 56 #define MBEDTLS_CMAC_C 57 #define MBEDTLS_CTR_DRBG_C 58 #define MBEDTLS_DES_C 59 #define MBEDTLS_ENTROPY_C 60 #define MBEDTLS_ERROR_C 61 #define MBEDTLS_GCM_C 62 #define MBEDTLS_HKDF_C 63 #define MBEDTLS_HMAC_DRBG_C 64 #define MBEDTLS_NIST_KW_C 65 #define MBEDTLS_MD_C 66 #define MBEDTLS_MD5_C 67 #define MBEDTLS_OID_C 68 #define MBEDTLS_PEM_PARSE_C 69 #define MBEDTLS_PEM_WRITE_C 70 #define MBEDTLS_PKCS5_C 71 #define MBEDTLS_PKCS12_C 72 #define MBEDTLS_PLATFORM_C 73 #define MBEDTLS_POLY1305_C 74 #define MBEDTLS_PSA_CRYPTO_C 75 #define MBEDTLS_PSA_CRYPTO_SE_C 76 #define MBEDTLS_PSA_CRYPTO_STORAGE_C 77 #define MBEDTLS_PSA_ITS_FILE_C 78 #define MBEDTLS_RIPEMD160_C 79 #define MBEDTLS_SHA1_C 80 /* The library does not currently support enabling SHA-224 without SHA-256. 81 * A future version of the library will have this option disabled 82 * by default. */ 83 #define MBEDTLS_SHA224_C 84 #define MBEDTLS_SHA256_C 85 #define MBEDTLS_SHA384_C 86 #define MBEDTLS_SHA512_C 87 //#define MBEDTLS_THREADING_C 88 #define MBEDTLS_TIMING_C 89 #define MBEDTLS_VERSION_C 90