config-symmetric-only.h 2.6 KB

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