xref: /OK3568_Linux_fs/buildroot/package/gnupg/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
14	  http://gnupg.org/
15
16if BR2_PACKAGE_GNUPG
17
18config BR2_PACKAGE_GNUPG_AES
19	bool "AES support"
20	help
21	  Support for the AES cipher
22
23config BR2_PACKAGE_GNUPG_RSA
24	bool "RSA support"
25	help
26	  Support for RSA public key algorithm
27
28config BR2_PACKAGE_GNUPG_GPGV
29	bool "gpgv"
30	help
31	  gpgv is an OpenPGP signature verification tool.
32
33	  This program is actually a stripped-down version of gpg
34	  which is only able to check signatures. It is somewhat
35	  smaller than the fully-blown gpg and uses a different (and
36	  simpler) way to check that the public keys used to make the
37	  signature are valid. There are no configuration files and
38	  only a few options are implemented.
39
40config BR2_PACKAGE_GNUPG_GPGSPLIT
41	bool "gpgsplit"
42	help
43	  gpgsplit splits an OpenPGP message into packets.
44
45endif
46