Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930
  1. menuconfig ASYMMETRIC_KEY_TYPE
  2. bool "Asymmetric (public-key cryptographic) key Support"
  3. help
  4. This option provides support for a key type that holds the data for
  5. the asymmetric keys used for public key cryptographic operations such
  6. as encryption, decryption, signature generation and signature
  7. verification.
  8. if ASYMMETRIC_KEY_TYPE
  9. config ASYMMETRIC_PUBLIC_KEY_SUBTYPE
  10. bool "Asymmetric public-key crypto algorithm subtype"
  11. help
  12. This option provides support for asymmetric public key type handling.
  13. If signature generation and/or verification are to be used,
  14. appropriate hash algorithms (such as SHA-1) must be available.
  15. ENOPKG will be reported if the requisite algorithm is unavailable.
  16. config RSA_PUBLIC_KEY_PARSER
  17. bool "RSA public key parser"
  18. depends on ASYMMETRIC_PUBLIC_KEY_SUBTYPE
  19. select ASN1_DECODER
  20. select ASN1_COMPILER
  21. select OID_REGISTRY
  22. help
  23. This option provides support for parsing a blob containing RSA
  24. public key data and provides the ability to instantiate a public
  25. key.
  26. endif # ASYMMETRIC_KEY_TYPE