config.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* Copyright (C) 2017 Fortanix, Inc.
  2. This file is part of Graphene Library OS.
  3. Graphene Library OS is free software: you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License
  5. as published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. Graphene Library OS is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. #ifndef MBEDTLS_CONFIG_H
  14. #define MBEDTLS_CONFIG_H
  15. #define MBEDTLS_AES_C
  16. #define MBEDTLS_AESNI_C
  17. #define MBEDTLS_BIGNUM_C
  18. #define MBEDTLS_CIPHER_C
  19. #define MBEDTLS_CMAC_C
  20. #define MBEDTLS_DHM_C
  21. #define MBEDTLS_GENPRIME
  22. #define MBEDTLS_HAVE_ASM
  23. #define MBEDTLS_HAVE_X86_64
  24. #define MBEDTLS_MD_C
  25. #define MBEDTLS_PKCS1_V15_BASIC
  26. #define MBEDTLS_PLATFORM_C
  27. #define MBEDTLS_RSA_C
  28. #define MBEDTLS_SHA256_C
  29. #define MBEDTLS_PLATFORM_C
  30. #endif