Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. config BR2_PACKAGE_GNUPG
  2. bool "gnupg"
  3. select BR2_PACKAGE_ZLIB
  4. help
  5. GnuPG is the GNU project's complete and free implementation
  6. of the OpenPGP standard as defined by RFC4880. GnuPG allows
  7. to encrypt and sign your data and communication, features a
  8. versatile key management system as well as access modules
  9. for all kinds of public key directories. GnuPG, also known
  10. as GPG, is a command line tool with features for easy
  11. integration with other applications.
  12. http://gnupg.org/
  13. if BR2_PACKAGE_GNUPG
  14. config BR2_PACKAGE_GNUPG_AES
  15. bool "AES support"
  16. help
  17. Support for the AES cipher
  18. config BR2_PACKAGE_GNUPG_RSA
  19. bool "RSA support"
  20. help
  21. Support for RSA public key algorithm
  22. config BR2_PACKAGE_GNUPG_GPGV
  23. bool "gpgv"
  24. help
  25. gpgv is an OpenPGP signature verification tool.
  26. This program is actually a stripped-down version of gpg
  27. which is only able to check signatures. It is somewhat
  28. smaller than the fully-blown gpg and uses a different (and
  29. simpler) way to check that the public keys used to make the
  30. signature are valid. There are no configuration files and
  31. only a few options are implemented.
  32. config BR2_PACKAGE_GNUPG_GPGSPLIT
  33. bool "gpgsplit"
  34. help
  35. gpgsplit splits an OpenPGP message into packets.
  36. endif