Config.in 1.3 KB

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