Kconfig.tfm.crypto_modules 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Configuration for the crypto modules in the TF-M Module
  2. # Copyright (c) 2021 Nordic Semiconductor ASA
  3. # SPDX-License-Identifier: Apache-2.0
  4. if BUILD_WITH_TFM
  5. if TFM_PARTITION_CRYPTO
  6. config TFM_CRYPTO_RNG_MODULE_ENABLED
  7. bool "Enable random number generator crypto module"
  8. default y
  9. help
  10. Enables the random number generator module within the crypto partition.
  11. Unset this option if 'psa_generate_random' is not used.
  12. config TFM_CRYPTO_KEY_MODULE_ENABLED
  13. bool "Enable KEY crypto module"
  14. default y
  15. help
  16. Enables the KEY crypto module within the crypto partition.
  17. Unset this option if the functionality provided by 'crypto_key.c'
  18. is not used.
  19. config TFM_CRYPTO_AEAD_MODULE_ENABLED
  20. bool "Enable AEAD crypto module"
  21. default y
  22. help
  23. Enables the AEAD crypto module within the crypto partition.
  24. Unset this option if the functionality provided by 'crypto_aead.c'
  25. is not used.
  26. config TFM_CRYPTO_MAC_MODULE_ENABLED
  27. bool "Enable MAC crypto module"
  28. default y
  29. help
  30. Enables the MAC crypto module within the crypto partition.
  31. Unset this option if the functionality provided by 'crypto_mac.c'
  32. is not used.
  33. config TFM_CRYPTO_HASH_MODULE_ENABLED
  34. bool "Enable HASH crypto module"
  35. default y
  36. help
  37. Enables the HASH crypto module within the crypto partition.
  38. Unset this option if the functionality provided by 'crypto_hash.c'
  39. is not used.
  40. config TFM_CRYPTO_CIPHER_MODULE_ENABLED
  41. bool "Enable CIPHER crypto module"
  42. default y
  43. help
  44. Enables the CIPHER crypto module within the crypto partition.
  45. Unset this option if the functionality provided by 'crypto_cipher.c'
  46. is not used.
  47. config TFM_CRYPTO_GENERATOR_MODULE_ENABLED
  48. bool "Enable GENERATOR crypto module"
  49. default y
  50. help
  51. Enables the GENERATOR crypto module within the crypto partition.
  52. Unset this option if the key generation, generate, raw key and
  53. key derivation features from 'tfm_crypto_secure_api.c' is not used.
  54. config TFM_CRYPTO_ASYMMETRIC_MODULE_ENABLED
  55. bool "Enable ASYMMETRIC crypto module"
  56. default y
  57. help
  58. Enables the ASYMMETRIC crypto module within the crypto partition.
  59. Unset this option if the functionality provided by 'crypto_asymmetric.c'
  60. is not used.
  61. config TFM_CRYPTO_KEY_DERIVATION_MODULE_ENABLED
  62. bool "Enable KEY DERIVATION crypto module"
  63. default y
  64. help
  65. Enables the KEY_DERIVATION crypto module within the crypto partition.
  66. Unset this option if the functionality provided by 'crypto_key_derivation.c'
  67. is not used.
  68. endif # TFM_PARTITION_CRYPTO
  69. endif # BUILD_WITH_TFM