Kconfig.tinycrypt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Cryptography primitive options for TinyCrypt version 2.0
  2. # Copyright (c) 2015 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. config TINYCRYPT
  5. bool "TinyCrypt Support"
  6. help
  7. This option enables the TinyCrypt cryptography library.
  8. if TINYCRYPT
  9. config TINYCRYPT_CTR_PRNG
  10. bool "PRNG in counter mode"
  11. help
  12. This option enables support for the pseudo-random number
  13. generator in counter mode.
  14. config TINYCRYPT_SHA256
  15. bool "SHA-256 Hash function support"
  16. help
  17. This option enables support for SHA-256
  18. hash function primitive.
  19. config TINYCRYPT_SHA256_HMAC
  20. bool "HMAC (via SHA256) message auth support"
  21. depends on TINYCRYPT_SHA256
  22. help
  23. This option enables support for HMAC using SHA-256
  24. message authentication code.
  25. config TINYCRYPT_SHA256_HMAC_PRNG
  26. bool "PRNG (via HMAC-SHA256) support"
  27. depends on TINYCRYPT_SHA256_HMAC
  28. help
  29. This option enables support for pseudo-random number
  30. generator.
  31. config TINYCRYPT_ECC_DH
  32. bool "ECC_DH anonymous key agreement protocol"
  33. help
  34. This option enables support for the Elliptic curve
  35. Diffie-Hellman anonymous key agreement protocol.
  36. Enabling ECC requires a cryptographically secure random number
  37. generator.
  38. config TINYCRYPT_ECC_DSA
  39. bool "ECC_DSA digital signature algorithm"
  40. help
  41. This option enables support for the Elliptic Curve Digital
  42. Signature Algorithm (ECDSA).
  43. Enabling ECC requires a cryptographically secure random number
  44. generator.
  45. config TINYCRYPT_AES
  46. bool "AES-128 decrypt/encrypt"
  47. help
  48. This option enables support for AES-128 decrypt and encrypt.
  49. config TINYCRYPT_AES_CBC
  50. bool "AES-128 block cipher"
  51. depends on TINYCRYPT_AES
  52. help
  53. This option enables support for AES-128 block cipher mode.
  54. config TINYCRYPT_AES_CTR
  55. bool "AES-128 counter mode"
  56. depends on TINYCRYPT_AES
  57. help
  58. This option enables support for AES-128 counter mode.
  59. config TINYCRYPT_AES_CCM
  60. bool "AES-128 CCM mode"
  61. depends on TINYCRYPT_AES
  62. help
  63. This option enables support for AES-128 CCM mode.
  64. config TINYCRYPT_AES_CMAC
  65. bool "AES-128 CMAC mode"
  66. depends on TINYCRYPT_AES
  67. help
  68. This option enables support for AES-128 CMAC mode.
  69. endif