This is gnupg.info, produced by makeinfo version 5.2 from gnupg.texi. This is the 'The GNU Privacy Guard Manual' (version 2.0.27, February 2015). Copyright (C) 2002, 2004, 2005, 2006, 2007, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. The text of the license can be found in the section entitled "Copying". INFO-DIR-SECTION GNU Utilities START-INFO-DIR-ENTRY * gpg2: (gnupg). OpenPGP encryption and signing tool. * gpgsm: (gnupg). S/MIME encryption and signing tool. * gpg-agent: (gnupg). The secret key daemon. END-INFO-DIR-ENTRY  File: gnupg.info, Node: System Notes, Next: Debugging, Prev: Howtos, Up: Top 9 Notes pertaining to certain OSes. *********************************** GnuPG has been developed on GNU/Linux systems and is know to work on almost all Free OSes. All modern POSIX systems should be supported right now, however there are probably a lot of smaller glitches we need to fix first. The major problem areas are: * For logging to sockets and other internal operations the 'fopencookie' function ('funopen' under *BSD) is used. This is a very convenient function which makes it possible to create outputs in a structures and easy maintainable way. The drawback however is that most proprietary OSes don't support this function. At g10 Code we have looked into several ways on how to overcome this limitation but no sufficiently easy and maintainable way has been found. Porting _glibc_ to a general POSIX system is of course an option and would make writing portable software much easier; this it has not yet been done and the system administrator would need to cope with the GNU specific admin things in addition to the generic ones of his system. We have now settled to use explicit stdio wrappers with a functionality similar to funopen. Although the code for this has already been written (_libestream_), we have not yet changed GnuPG to use it. This means that on systems not supporting either 'funopen' or 'fopencookie', logging to a socket won't work, prompts are not formatted as pretty as they should be and 'gpgsm''s 'LISTKEYS' Assuan command does not work. * We are planning to use file descriptor passing for interprocess communication. This will allow us save a lot of resources and improve performance of certain operations a lot. Systems not supporting this won't gain these benefits but we try to keep them working the standard way as it is done today. * We require more or less full POSIX compatibility. This has been around for 15 years now and thus we don't believe it makes sense to support non POSIX systems anymore. Well, we of course the usual workarounds for near POSIX systems well be applied. There is one exception of this rule: Systems based the Microsoft Windows API (called here _W32_) will be supported to some extend. * Menu: * W32 Notes:: Microsoft Windows Notes  File: gnupg.info, Node: W32 Notes, Up: System Notes 9.1 Microsoft Windows Notes =========================== Current limitations are: * 'gpgconf' does not create backup files, so in case of trouble your configuration file might get lost. * 'watchgnupg' is not available. Logging to sockets is not possible. * The periodical smartcard status checking done by 'scdaemon' is not yet supported.  File: gnupg.info, Node: Debugging, Next: Copying, Prev: System Notes, Up: Top 10 How to solve problems ************************ Everyone knows that software often does not do what it should do and thus there is a need to track down problems. We call this debugging in a reminiscent to the moth jamming a relay in a Mark II box back in 1947. Most of the problems a merely configuration and user problems but nevertheless there are the most annoying ones and responsible for many gray hairs. We try to give some guidelines here on how to identify and solve the problem at hand. * Menu: * Debugging Tools:: Description of some useful tools. * Debugging Hints:: Various hints on debugging. * Common Problems:: Commonly seen problems. * Architecture Details:: How the whole thing works internally.  File: gnupg.info, Node: Debugging Tools, Next: Debugging Hints, Up: Debugging 10.1 Debugging Tools ==================== The GnuPG distribution comes with a couple of tools, useful to help find and solving problems. * Menu: * kbxutil:: Scrutinizing a keybox file.  File: gnupg.info, Node: kbxutil, Up: Debugging Tools 10.1.1 Scrutinizing a keybox file --------------------------------- A keybox is a file format used to store public keys along with meta information and indices. The commonly used one is the file 'pubring.kbx' in the '.gnupg' directory. It contains all X.509 certificates as well as OpenPGP keys(1) . When called the standard way, e.g.: 'kbxutil ~/.gnupg/pubring.kbx' it lists all records (called blobs) with there meta-information in a human readable format. To see statistics on the keybox in question, run it using 'kbxutil --stats ~/.gnupg/pubring.kbx' and you get an output like: Total number of blobs: 99 header: 1 empty: 0 openpgp: 0 x509: 98 non flagged: 81 secret flagged: 0 ephemeral flagged: 17 In this example you see that the keybox does not have any OpenPGP keys but contains 98 X.509 certificates and a total of 17 keys or certificates are flagged as ephemeral, meaning that they are only temporary stored (cached) in the keybox and won't get listed using the usual commands provided by 'gpgsm' or 'gpg'. 81 certificates are stored in a standard way and directly available from 'gpgsm'. To find duplicated certificates and keyblocks in a keybox file (this should not occur but sometimes things go wrong), run it using 'kbxutil --find-dups ~/.gnupg/pubring.kbx' ---------- Footnotes ---------- (1) Well, OpenPGP keys are not implemented, 'gpg' still used the keyring file 'pubring.gpg'  File: gnupg.info, Node: Debugging Hints, Next: Common Problems, Prev: Debugging Tools, Up: Debugging 10.2 Various hints on debugging. ================================ * How to find the IP address of a keyserver If a round robin URL of is used for a keyserver (e.g. subkeys.gnupg.org); it is not easy to see what server is actually used. Using the keyserver debug option as in gpg --keyserver-options debug=1 -v --refresh-key 1E42B367 is thus often helpful. Note that the actual output depends on the backend and may change from release to release.  File: gnupg.info, Node: Common Problems, Next: Architecture Details, Prev: Debugging Hints, Up: Debugging 10.3 Commonly Seen Problems =========================== * Error code 'Not supported' from Dirmngr Most likely the option 'enable-ocsp' is active for gpgsm but Dirmngr's OCSP feature has not been enabled using 'allow-ocsp' in 'dirmngr.conf'. * The Curses based Pinentry does not work The far most common reason for this is that the environment variable 'GPG_TTY' has not been set correctly. Make sure that it has been set to a real tty devce and not just to '/dev/tty'; i.e. 'GPG_TTY=tty' is plainly wrong; what you want is 'GPG_TTY=`tty`' -- note the back ticks. Also make sure that this environment variable gets exported, that is you should follow up the setting with an 'export GPG_TTY' (assuming a Bourne style shell). Even for GUI based Pinentries; you should have set 'GPG_TTY'. See the section on installing the 'gpg-agent' on how to do it. * SSH hangs while a popping up pinentry was expected SSH has no way to tell the gpg-agent what terminal or X display it is running on. So when remotely logging into a box where a gpg-agent with SSH support is running, the pinentry will get popped up on whatever display the gpg-agent has been started. To solve this problem you may issue the command echo UPDATESTARTUPTTY | gpg-connect-agent and the next pinentry will pop up on your display or screen. However, you need to kill the running pinentry first because only one pinentry may be running at once. If you plan to use ssh on a new display you should issue the above command before invoking ssh or any other service making use of ssh. * Exporting a secret key without a certificate I may happen that you have created a certificate request using 'gpgsm' but not yet received and imported the certificate from the CA. However, you want to export the secret key to another machine right now to import the certificate over there then. You can do this with a little trick but it requires that you know the approximate time you created the signing request. By running the command ls -ltr ~/.gnupg/private-keys-v1.d you get a listing of all private keys under control of 'gpg-agent'. Pick the key which best matches the creation time and run the command /usr/local/libexec/gpg-protect-tool --p12-export ~/.gnupg/private-keys-v1.d/FOO >FOO.p12 (Please adjust the path to 'gpg-protect-tool' to the appropriate location). FOO is the name of the key file you picked (it should have the suffix '.key'). A Pinentry box will pop up and ask you for the current passphrase of the key and a new passphrase to protect it in the pkcs#12 file. To import the created file on the machine you use this command: /usr/local/libexec/gpg-protect-tool --p12-import --store FOO.p12 You will be asked for the pkcs#12 passphrase and a new passphrase to protect the imported private key at its new location. Note that there is no easy way to match existing certificates with stored private keys because some private keys are used for Secure Shell or other purposes and don't have a corresponding certificate. * A root certificate does not verify A common problem is that the root certificate misses the required basicConstraints attribute and thus 'gpgsm' rejects this certificate. An error message indicating "no value" is a sign for such a certificate. You may use the 'relax' flag in 'trustlist.txt' to accept the certificate anyway. Note that the fingerprint and this flag may only be added manually to 'trustlist.txt'. * Error message: "digest algorithm N has not been enabled" The signature is broken. You may try the option '--extra-digest-algo SHA256' to workaround the problem. The number N is the internal algorithm identifier; for example 8 refers to SHA-256. * The Windows version does not work under Wine When running the W32 version of 'gpg' under Wine you may get an error messages like: gpg: fatal: WriteConsole failed: Access denied The solution is to use the command 'wineconsole'. Some operations like gen-key really want to talk to the console directly for increased security (for example to prevent the passphrase from appearing on the screen). So, you should use 'wineconsole' instead of 'wine', which will launch a windows console that implements those additional features. * Why does GPG's -search-key list weird keys? For performance reasons the keyservers do not check the keys the same way 'gpg' does. It may happen that the listing of keys available on the keyservers shows keys with wrong user IDs or with user Ids from other keys. If you try to import this key, the bad keys or bad user ids won't get imported, though. This is a bit unfortunate but we can't do anything about it without actually downloading the keys.  File: gnupg.info, Node: Architecture Details, Prev: Common Problems, Up: Debugging 10.4 How the whole thing works internally. ========================================== * Menu: * GnuPG-1 and GnuPG-2:: Relationship between the two branches.  File: gnupg.info, Node: GnuPG-1 and GnuPG-2, Up: Architecture Details 10.4.1 Relationship between the two branches. --------------------------------------------- Here is a little picture showing how the components work together: [image src="gnupg-card-architecture.png"] Lets try to explain it: TO BE DONE.  File: gnupg.info, Node: Copying, Next: Contributors, Prev: Debugging, Up: Top GNU General Public License ************************** Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble ======== The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program-to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a. The work must carry prominent notices stating that you modified it, and giving a relevant date. b. The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c. You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d. If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a. Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b. Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c. Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d. Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e. Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a. Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b. Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c. Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d. Limiting the use for publicity purposes of names of licensors or authors of the material; or e. Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f. Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs ============================================= If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. ONE LINE TO GIVE THE PROGRAM'S NAME AND A BRIEF IDEA OF WHAT IT DOES. Copyright (C) YEAR NAME OF AUTHOR This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: PROGRAM Copyright (C) YEAR NAME OF AUTHOR This program comes with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free software, and you are welcome to redistribute it under certain conditions; type 'show c' for details. The hypothetical commands 'show w' and 'show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .  File: gnupg.info, Node: Contributors, Next: Glossary, Prev: Copying, Up: Top Contributors to GnuPG ********************* The GnuPG project would like to thank its many contributors. Without them the project would not have been nearly as successful as it has been. Any omissions in this list are accidental. Feel free to contact the maintainer if you have been left out or some of your contributions are not listed. David Shaw, Matthew Skala, Michael Roth, Niklas Hernaeus, Nils Ellmenreich, Rémi Guyomarch, Stefan Bellon, Timo Schulz and Werner Koch wrote the code. Birger Langkjer, Daniel Resare, Dokianakis Theofanis, Edmund GRIMLEY EVANS, Gaël Quéri, Gregory Steuck, Nagy Ferenc László, Ivo Timmermans, Jacobo Tarri'o Barreiro, Janusz Aleksander Urbanowicz, Jedi Lin, Jouni Hiltunen, Laurentiu Buzdugan, Magda Procha'zkova', Michael Anckaert, Michal Majer, Marco d'Itri, Nilgun Belma Buguner, Pedro Morais, Tedi Heriyanto, Thiago Jung Bauermann, Rafael Caetano dos Santos, Toomas Soome, Urko Lusa, Walter Koch, Yosiaki IIDA did the official translations. Mike Ashley wrote and maintains the GNU Privacy Handbook. David Scribner is the current FAQ editor. Lorenzo Cappelletti maintains the web site. The new modularized architecture of gnupg 1.9 as well as the X.509/CMS part has been developed as part of the Ägypten project. Direct contributors to this project are: Bernhard Herzog, who did extensive testing and tracked down a lot of bugs. Bernhard Reiter, who made sure that we met the specifications and the deadlines. He did extensive testing and came up with a lot of suggestions. Jan-Oliver Wagner made sure that we met the specifications and the deadlines. He also did extensive testing and came up with a lot of suggestions. Karl-Heinz Zimmer and Marc Mutz had to struggle with all the bugs and misconceptions while working on KDE integration. Marcus Brinkman extended GPGME, cleaned up the Assuan code and fixed bugs all over the place. Moritz Schulte took over Libgcrypt maintenance and developed it into a stable an useful library. Steffen Hansen had a hard time to write the dirmngr due to underspecified interfaces. Thomas Koester did extensive testing and tracked down a lot of bugs. Werner Koch designed the system and wrote most of the code. The following people helped greatly by suggesting improvements, testing, fixing bugs, providing resources and doing other important tasks: Adam Mitchell, Albert Chin, Alec Habig, Allan Clark, Anand Kumria, Andreas Haumer, Anthony Mulcahy, Ariel T Glenn, Bob Mathews, Bodo Moeller, Brendan O'Dea, Brenno de Winter, Brian M. Carlson, Brian Moore, Brian Warner, Bryan Fullerton, Caskey L. Dickson, Cees van de Griend, Charles Levert, Chip Salzenberg, Chris Adams, Christian Biere, Christian Kurz, Christian von Roques, Christopher Oliver, Christian Recktenwald, Dan Winship, Daniel Eisenbud, Daniel Koening, Dave Dykstra, David C Niemi, David Champion, David Ellement, David Hallinan, David Hollenberg, David Mathog, David R. Bergstein, Detlef Lannert, Dimitri, Dirk Lattermann, Dirk Meyer, Disastry, Douglas Calvert, Ed Boraas, Edmund GRIMLEY EVANS, Edwin Woudt, Enzo Michelangeli, Ernst Molitor, Fabio Coatti, Felix von Leitner, fish stiqz, Florian Weimer, Francesco Potorti, Frank Donahoe, Frank Heckenbach, Frank Stajano, Frank Tobin, Gabriel Rosenkoetter, Gaël Quéri, Gene Carter, Geoff Keating, Georg Schwarz, Giampaolo Tomassoni, Gilbert Fernandes, Greg Louis, Greg Troxel, Gregory Steuck, Gregery Barton, Harald Denker, Holger Baust, Hendrik Buschkamp, Holger Schurig, Holger Smolinski, Holger Trapp, Hugh Daniel, Huy Le, Ian McKellar, Ivo Timmermans, Jan Krueger, Jan Niehusmann, Janusz A. Urbanowicz, James Troup, Jean-loup Gailly, Jeff Long, Jeffery Von Ronne, Jens Bachem, Jeroen C. van Gelderen, J Horacio MG, J. Michael Ashley, Jim Bauer, Jim Small, Joachim Backes, Joe Rhett, John A. Martin, Johnny Teveßen, Jörg Schilling, Jos Backus, Joseph Walton, Juan F. Codagnone, Jun Kuriyama, Kahil D. Jallad, Karl Fogel, Karsten Thygesen, Katsuhiro Kondou, Kazu Yamamoto, Keith Clayton, Kevin Ryde, Klaus Singvogel, Kurt Garloff, Lars Kellogg-Stedman, L. Sassaman, M Taylor, Marcel Waldvogel, Marco d'Itri, Marco Parrone, Marcus Brinkmann, Mark Adler, Mark Elbrecht, Mark Pettit, Markus Friedl, Martin Kahlert, Martin Hamilton, Martin Schulte, Matt Kraai, Matthew Skala, Matthew Wilcox, Matthias Urlichs, Max Valianskiy, Michael Engels, Michael Fischer v. Mollard, Michael Roth, Michael Sobolev, Michael Tokarev, Nicolas Graner, Mike McEwan, Neal H Walfield, Nelson H. F. Beebe, NIIBE Yutaka, Niklas Hernaeus, Nimrod Zimerman, N J Doye, Oliver Haakert, Oskari Jääskeläinen, Pascal Scheffers, Paul D. Smith, Per Cederqvist, Phil Blundell, Philippe Laliberte, Peter Fales, Peter Gutmann, Peter Marschall, Peter Valchev, Piotr Krukowiecki, QingLong, Ralph Gillen, Rat, Reinhard Wobst, Rémi Guyomarch, Reuben Sumner, Richard Outerbridge, Robert Joop, Roddy Strachan, Roger Sondermann, Roland Rosenfeld, Roman Pavlik, Ross Golder, Ryan Malayter, Sam Roberts, Sami Tolvanen, Sean MacLennan, Sebastian Klemke, Serge Munhoven, SL Baur, Stefan Bellon, Dr.Stefan.Dalibor, Stefan Karrmann, Stefan Keller, Steffen Ullrich, Steffen Zahn, Steven Bakker, Steven Murdoch, Susanne Schultz, Ted Cabeen, Thiago Jung Bauermann, Thijmen Klok, Thomas Roessler, Tim Mooney, Timo Schulz, Todd Vierling, TOGAWA Satoshi, Tom Spindler, Tom Zerucha, Tomas Fasth, Tommi Komulainen, Thomas Klausner, Tomasz Kozlowski, Thomas Mikkelsen, Ulf Möller, Urko Lusa, Vincent P. Broman, Volker Quetschke, W Lewis, Walter Hofmann, Walter Koch, Wayne Chapeskie, Wim Vandeputte, Winona Brown, Yosiaki IIDA, Yoshihiro Kajiki and Gerlinde Klaes. This software has been made possible by the previous work of Chris Wedgwood, Jean-loup Gailly, Jon Callas, Mark Adler, Martin Hellmann Paul Kendall, Philip R. Zimmermann, Peter Gutmann, Philip A. Nelson, Taher Elgamal, Torbjorn Granlund, Whitfield Diffie, some unknown NSA mathematicians and all the folks who have worked hard to create complete and free operating systems. And finally we'd like to thank everyone who uses these tools, submits bug reports and generally reminds us why we're doing this work in the first place.  File: gnupg.info, Node: Glossary, Next: Option Index, Prev: Contributors, Up: Top Glossary ******** 'ARL' The _Authority Revocation List_ is technical identical to a CRL but used for CAs and not for end user certificates. 'Chain model' Verification model for X.509 which uses the creation date of a signature as the date the validation starts and in turn checks that each certificate has been issued within the time frame, the issuing certificate was valid. This allows the verification of signatures after the CA's certificate expired. The validation test also required an online check of the certificate status. The chain model is required by the German signature law. See also _Shell model_. 'CMS' The _Cryptographic Message Standard_ describes a message format for encryption and digital signing. It is closely related to the X.509 certificate format. CMS was formerly known under the name 'PKCS#7' and is described by 'RFC3369'. 'CRL' The _Certificate Revocation List_ is a list containing certificates revoked by the issuer. 'CSR' The _Certificate Signing Request_ is a message send to a CA to ask them to issue a new certificate. The data format of such a signing request is called PCKS#10. 'OpenPGP' A data format used to build a PKI and to exchange encrypted or signed messages. In contrast to X.509, OpenPGP also includes the message format but does not explicitly demand a specific PKI. However any kind of PKI may be build upon the OpenPGP protocol. 'Keygrip' This term is used by GnuPG to describe a 20 byte hash value used to identify a certain key without referencing to a concrete protocol. It is used internally to access a private key. Usually it is shown and entered as a 40 character hexadecimal formatted string. 'OCSP' The _Online Certificate Status Protocol_ is used as an alternative to a CRL. It is described in 'RFC 2560'. 'PSE' The _Personal Security Environment_ describes a database to store private keys. This is either a smartcard or a collection of files on a disk; the latter is often called a Soft-PSE. 'Shell model' The standard model for validation of certificates under X.509. At the time of the verification all certificates must be valid and not expired. See also _Chain mode_. 'X.509' Description of a PKI used with CMS. It is for example defined by 'RFC3280'.  File: gnupg.info, Node: Option Index, Next: Index, Prev: Glossary, Up: Top Option Index ************ [index] * Menu: * agent-program: GPG Configuration Options. (line 622) * agent-program <1>: Configuration Options. (line 33) * agent-program <2>: Invoking gpg-connect-agent. (line 29) * allow-admin: Scdaemon Options. (line 178) * allow-freeform-uid: GPG Esoteric Options. (line 311) * allow-mark-trusted: Agent Options. (line 133) * allow-multiple-messages: GPG Esoteric Options. (line 432) * allow-non-selfsigned-uid: GPG Esoteric Options. (line 306) * allow-secret-key-import: GPG Esoteric Options. (line 428) * allow-weak-digest-algos: GPG Esoteric Options. (line 346) * always-trust: Deprecated Options. (line 21) * armor: GPG Input and Output. (line 8) * armor <1>: Input and Output. (line 8) * ask-cert-expire: GPG Esoteric Options. (line 415) * ask-cert-level: GPG Configuration Options. (line 309) * ask-sig-expire: GPG Esoteric Options. (line 401) * assume-armor: Input and Output. (line 14) * assume-base64: Input and Output. (line 18) * assume-binary: Input and Output. (line 21) * attribute-fd: GPG Esoteric Options. (line 81) * attribute-file: GPG Esoteric Options. (line 87) * auto-check-trustdb: GPG Configuration Options. (line 609) * auto-issuer-key-retrieve: Certificate Options. (line 50) * auto-key-locate: GPG Configuration Options. (line 390) * base64: Input and Output. (line 11) * batch: Agent Options. (line 31) * batch <1>: GPG Configuration Options. (line 39) * bzip2-compress-level: GPG Configuration Options. (line 283) * bzip2-decompress-lowmem: GPG Configuration Options. (line 293) * call-dirmngr: Operational GPGSM Commands. (line 27) * call-protect-tool: Operational GPGSM Commands. (line 41) * card-edit: Operational GPG Commands. (line 165) * card-status: Operational GPG Commands. (line 171) * card-timeout: Scdaemon Options. (line 154) * cert-digest-algo: GPG Esoteric Options. (line 220) * cert-notation: GPG Esoteric Options. (line 113) * cert-policy-url: GPG Esoteric Options. (line 143) * change-pin: Operational GPG Commands. (line 174) * check-passphrase-pattern: Agent Options. (line 179) * check-sigs: Operational GPG Commands. (line 134) * check-trustdb: Operational GPG Commands. (line 277) * cipher-algo: GPG Esoteric Options. (line 181) * cipher-algo <1>: CMS Options. (line 13) * clearsign: Operational GPG Commands. (line 17) * command-fd: GPG Esoteric Options. (line 294) * command-file: GPG Esoteric Options. (line 301) * comment: GPG Esoteric Options. (line 92) * compliant-needed: GPG Configuration Options. (line 568) * compress-algo: GPG Esoteric Options. (line 197) * compress-level: GPG Configuration Options. (line 283) * csh: Agent Options. (line 104) * ctapi-driver: Scdaemon Options. (line 132) * daemon: Agent Commands. (line 27) * daemon <1>: Scdaemon Commands. (line 31) * dearmor: Operational GPG Commands. (line 331) * debug: Agent Options. (line 65) * debug <1>: GPG Esoteric Options. (line 47) * debug <2>: Esoteric Options. (line 54) * debug <3>: Scdaemon Options. (line 56) * debug-all: Agent Options. (line 89) * debug-all <1>: GPG Esoteric Options. (line 51) * debug-all <2>: Esoteric Options. (line 81) * debug-all <3>: Scdaemon Options. (line 83) * debug-allow-core-dump: Esoteric Options. (line 84) * debug-allow-core-dump <1>: Scdaemon Options. (line 100) * debug-assuan-log-cats: Scdaemon Options. (line 109) * debug-disable-ticker: Scdaemon Options. (line 96) * debug-ignore-expiration: Esoteric Options. (line 95) * debug-level: Agent Options. (line 40) * debug-level <1>: GPG Esoteric Options. (line 22) * debug-level <2>: Esoteric Options. (line 29) * debug-level <3>: Scdaemon Options. (line 27) * debug-log-tid: Scdaemon Options. (line 106) * debug-no-chain-validation: Esoteric Options. (line 91) * debug-wait: Agent Options. (line 92) * debug-wait <1>: Scdaemon Options. (line 86) * debug-wait <2>: Scdaemon Options. (line 91) * decode: Invoking gpg-connect-agent. (line 64) * decrypt: Operational GPG Commands. (line 52) * decrypt <1>: Operational GPGSM Commands. (line 11) * decrypt <2>: gpg-zip. (line 22) * decrypt-files: Operational GPG Commands. (line 95) * default-cache-ttl: Agent Options. (line 144) * default-cache-ttl <1>: Agent Options. (line 148) * default-cert-expire: GPG Esoteric Options. (line 421) * default-cert-level: GPG Configuration Options. (line 317) * default-key: GPG Configuration Options. (line 10) * default-key <1>: Input and Output. (line 34) * default-keyserver-url: GPG Esoteric Options. (line 460) * default-preference-list: GPG Esoteric Options. (line 455) * default-recipient: GPG Configuration Options. (line 15) * default-recipient-self: GPG Configuration Options. (line 19) * default-sig-expire: GPG Esoteric Options. (line 407) * delete-key: Operational GPG Commands. (line 179) * delete-keys: Certificate Management. (line 57) * delete-secret-and-public-key: Operational GPG Commands. (line 188) * delete-secret-key: Operational GPG Commands. (line 184) * deny-admin: Scdaemon Options. (line 178) * desig-revoke: OpenPGP Key Management. (line 21) * detach-sign: Operational GPG Commands. (line 27) * digest-algo: GPG Esoteric Options. (line 190) * dirmngr-program: Configuration Options. (line 39) * disable-application: Scdaemon Options. (line 188) * disable-ccid: Scdaemon Options. (line 137) * disable-cipher-algo: GPG Esoteric Options. (line 228) * disable-crl-checks: Certificate Options. (line 13) * disable-dsa2: GPG Configuration Options. (line 173) * disable-large-rsa: GPG Configuration Options. (line 166) * disable-mdc: OpenPGP Options. (line 40) * disable-ocsp: Certificate Options. (line 41) * disable-pinpad: Scdaemon Options. (line 175) * disable-policy-checks: Certificate Options. (line 8) * disable-pubkey-algo: GPG Esoteric Options. (line 233) * disable-scdaemon: Agent Options. (line 218) * disable-trusted-cert-crl-check: Certificate Options. (line 19) * display: Agent Options. (line 245) * display-charset: GPG Configuration Options. (line 238) * display-charset:iso-8859-1: GPG Configuration Options. (line 247) * display-charset:iso-8859-15: GPG Configuration Options. (line 253) * display-charset:iso-8859-2: GPG Configuration Options. (line 250) * display-charset:koi8-r: GPG Configuration Options. (line 256) * display-charset:utf-8: GPG Configuration Options. (line 259) * dry-run: GPG Esoteric Options. (line 8) * dump-cert: Certificate Management. (line 33) * dump-chain: Certificate Management. (line 37) * dump-external-keys: Certificate Management. (line 44) * dump-keys: Certificate Management. (line 33) * dump-options: Agent Commands. (line 19) * dump-options <1>: General GPG Commands. (line 19) * dump-options <2>: General GPGSM Commands. (line 19) * dump-options <3>: Scdaemon Commands. (line 18) * dump-secret-keys: Certificate Management. (line 40) * edit-key: OpenPGP Key Management. (line 26) * emit-version: GPG Esoteric Options. (line 103) * enable-crl-checks: Certificate Options. (line 13) * enable-dsa2: GPG Configuration Options. (line 173) * enable-large-rsa: GPG Configuration Options. (line 166) * enable-ocsp: Certificate Options. (line 41) * enable-passphrase-history: Agent Options. (line 198) * enable-pinpad-varlen: Scdaemon Options. (line 167) * enable-policy-checks: Certificate Options. (line 8) * enable-progress-filter: GPG Esoteric Options. (line 60) * enable-special-filenames: GPG Esoteric Options. (line 442) * enable-ssh-support: Agent Options. (line 255) * enable-trusted-cert-crl-check: Certificate Options. (line 19) * enarmor: Operational GPG Commands. (line 331) * encrypt: Operational GPG Commands. (line 31) * encrypt <1>: Operational GPGSM Commands. (line 7) * encrypt <2>: gpg-zip. (line 17) * encrypt-files: Operational GPG Commands. (line 92) * encrypt-to: GPG Key related Options. (line 21) * enforce-passphrase-constraints: Agent Options. (line 164) * escape-from-lines: GPG Esoteric Options. (line 258) * exec: Invoking gpg-connect-agent. (line 39) * exec-path: GPG Configuration Options. (line 197) * exit-on-status-write-error: GPG Configuration Options. (line 643) * expert: GPG Configuration Options. (line 701) * export: Operational GPG Commands. (line 193) * export <1>: Certificate Management. (line 66) * export-options: GPG Input and Output. (line 75) * export-ownertrust: Operational GPG Commands. (line 292) * export-secret-key-p12: Certificate Management. (line 79) * export-secret-keys: Operational GPG Commands. (line 209) * export-secret-subkeys: Operational GPG Commands. (line 209) * extra-digest-algo: Esoteric Options. (line 7) * faked-system-time: Agent Options. (line 35) * faked-system-time <1>: GPG Esoteric Options. (line 54) * faked-system-time <2>: Esoteric Options. (line 18) * fast-list-mode: GPG Esoteric Options. (line 366) * fetch-keys: Operational GPG Commands. (line 262) * fingerprint: Operational GPG Commands. (line 154) * fixed-list-mode: GPG Input and Output. (line 126) * fixed-passphrase: Esoteric Options. (line 100) * for-your-eyes-only: GPG Esoteric Options. (line 167) * force: watchgnupg. (line 22) * force-crl-refresh: Certificate Options. (line 30) * force-mdc: OpenPGP Options. (line 34) * force-v3-sigs: OpenPGP Options. (line 19) * force-v4-certs: OpenPGP Options. (line 29) * forget: Invoking gpg-preset-passphrase. (line 24) * gen-key: OpenPGP Key Management. (line 9) * gen-key <1>: Certificate Management. (line 7) * gen-prime: Operational GPG Commands. (line 326) * gen-random: Operational GPG Commands. (line 319) * gen-revoke: OpenPGP Key Management. (line 17) * gnupg: Compliance Options. (line 12) * gpg: gpg-zip. (line 50) * gpg-agent-info: GPG Configuration Options. (line 619) * gpg-args: gpg-zip. (line 53) * gpgconf-list: GPG Esoteric Options. (line 473) * gpgconf-test: GPG Esoteric Options. (line 477) * group: GPG Key related Options. (line 41) * help: Agent Commands. (line 15) * help <1>: General GPG Commands. (line 12) * help <2>: General GPGSM Commands. (line 11) * help <3>: Scdaemon Commands. (line 14) * help <4>: watchgnupg. (line 35) * help <5>: gpg-zip. (line 65) * hex: Invoking gpg-connect-agent. (line 60) * hidden-encrypt-to: GPG Key related Options. (line 29) * hidden-recipient: GPG Key related Options. (line 14) * homedir: Agent Options. (line 13) * homedir <1>: GPG Configuration Options. (line 230) * homedir <2>: Configuration Options. (line 16) * homedir <3>: Scdaemon Options. (line 13) * homedir <4>: gpgv. (line 51) * homedir <5>: Invoking gpg-connect-agent. (line 21) * homedir <6>: Invoking symcryptrun. (line 36) * ignore-cache-for-signing: Agent Options. (line 138) * ignore-cert-extension: Certificate Options. (line 70) * ignore-crc-error: GPG Esoteric Options. (line 331) * ignore-mdc-error: GPG Esoteric Options. (line 338) * ignore-time-conflict: GPG Esoteric Options. (line 317) * ignore-time-conflict <1>: gpgv. (line 45) * ignore-valid-from: GPG Esoteric Options. (line 324) * import: Operational GPG Commands. (line 231) * import <1>: Certificate Management. (line 87) * import-options: GPG Input and Output. (line 29) * import-ownertrust: Operational GPG Commands. (line 298) * include-certs: CMS Options. (line 7) * interactive: GPG Esoteric Options. (line 19) * keep-display: Agent Options. (line 250) * keep-tty: Agent Options. (line 250) * keydb-clear-some-cert-flags: Certificate Management. (line 49) * keyedit:addcardkey: OpenPGP Key Management. (line 162) * keyedit:addkey: OpenPGP Key Management. (line 159) * keyedit:addphoto: OpenPGP Key Management. (line 81) * keyedit:addrevoker: OpenPGP Key Management. (line 210) * keyedit:adduid: OpenPGP Key Management. (line 78) * keyedit:bkuptocard: OpenPGP Key Management. (line 176) * keyedit:check: OpenPGP Key Management. (line 75) * keyedit:clean: OpenPGP Key Management. (line 222) * keyedit:cross-certify: OpenPGP Key Management. (line 236) * keyedit:delkey: OpenPGP Key Management. (line 187) * keyedit:delsig: OpenPGP Key Management. (line 65) * keyedit:deluid: OpenPGP Key Management. (line 91) * keyedit:disable: OpenPGP Key Management. (line 206) * keyedit:enable: OpenPGP Key Management. (line 206) * keyedit:expire: OpenPGP Key Management. (line 195) * keyedit:key: OpenPGP Key Management. (line 35) * keyedit:keyserver: OpenPGP Key Management. (line 108) * keyedit:keytocard: OpenPGP Key Management. (line 165) * keyedit:lsign: OpenPGP Key Management. (line 46) * keyedit:minimize: OpenPGP Key Management. (line 231) * keyedit:notation: OpenPGP Key Management. (line 115) * keyedit:nrsign: OpenPGP Key Management. (line 51) * keyedit:passwd: OpenPGP Key Management. (line 216) * keyedit:pref: OpenPGP Key Management. (line 123) * keyedit:primary: OpenPGP Key Management. (line 100) * keyedit:quit: OpenPGP Key Management. (line 247) * keyedit:revkey: OpenPGP Key Management. (line 192) * keyedit:revsig: OpenPGP Key Management. (line 70) * keyedit:revuid: OpenPGP Key Management. (line 97) * keyedit:save: OpenPGP Key Management. (line 244) * keyedit:setpref: OpenPGP Key Management. (line 135) * keyedit:showphoto: OpenPGP Key Management. (line 88) * keyedit:showpref: OpenPGP Key Management. (line 127) * keyedit:sign: OpenPGP Key Management. (line 39) * keyedit:toggle: OpenPGP Key Management. (line 219) * keyedit:trust: OpenPGP Key Management. (line 201) * keyedit:tsign: OpenPGP Key Management. (line 55) * keyedit:uid: OpenPGP Key Management. (line 31) * keyid-format: GPG Configuration Options. (line 433) * keyring: GPG Configuration Options. (line 204) * keyring <1>: gpgv. (line 32) * keyserver: GPG Configuration Options. (line 440) * keyserver-options: GPG Configuration Options. (line 460) * lc-ctype: Agent Options. (line 245) * lc-messages: Agent Options. (line 245) * learn-card: Certificate Management. (line 92) * limit-card-insert-tries: GPG Configuration Options. (line 652) * list-archive: gpg-zip. (line 43) * list-chain: Certificate Management. (line 29) * list-config: GPG Esoteric Options. (line 465) * list-keys: Operational GPG Commands. (line 100) * list-keys <1>: Certificate Management. (line 14) * list-keys <2>: Certificate Management. (line 25) * list-only: GPG Esoteric Options. (line 11) * list-options: GPG Configuration Options. (line 59) * list-options:show-keyring: GPG Configuration Options. (line 102) * list-options:show-keyserver-urls: GPG Configuration Options. (line 86) * list-options:show-notations: GPG Configuration Options. (line 81) * list-options:show-photos: GPG Configuration Options. (line 67) * list-options:show-policy-urls: GPG Configuration Options. (line 75) * list-options:show-sig-expire: GPG Configuration Options. (line 106) * list-options:show-sig-subpackets: GPG Configuration Options. (line 110) * list-options:show-std-notations: GPG Configuration Options. (line 81) * list-options:show-uid-validity: GPG Configuration Options. (line 90) * list-options:show-unusable-subkeys: GPG Configuration Options. (line 98) * list-options:show-unusable-uids: GPG Configuration Options. (line 94) * list-options:show-user-notations: GPG Configuration Options. (line 81) * list-packets: Operational GPG Commands. (line 161) * list-secret-keys: Operational GPG Commands. (line 110) * list-secret-keys <1>: Certificate Management. (line 21) * list-sigs: Operational GPG Commands. (line 116) * local-user: GPG Key related Options. (line 63) * local-user <1>: Input and Output. (line 41) * local-user <2>: gpg-zip. (line 40) * locate-keys: Operational GPG Commands. (line 147) * lock-multiple: GPG Configuration Options. (line 632) * lock-never: GPG Configuration Options. (line 636) * lock-once: GPG Configuration Options. (line 628) * log-file: Agent Options. (line 126) * log-file <1>: GPG Esoteric Options. (line 77) * log-file <2>: Configuration Options. (line 58) * log-file <3>: Scdaemon Options. (line 122) * log-file <4>: Invoking symcryptrun. (line 44) * logger-fd: GPG Esoteric Options. (line 73) * logger-fd <1>: gpgv. (line 42) * lsign-key: OpenPGP Key Management. (line 282) * mangle-dos-filenames: GPG Configuration Options. (line 301) * marginals-needed: GPG Configuration Options. (line 572) * max-cache-ttl: Agent Options. (line 152) * max-cache-ttl-ssh: Agent Options. (line 158) * max-cert-depth: GPG Configuration Options. (line 576) * max-output: GPG Input and Output. (line 19) * max-passphrase-days: Agent Options. (line 193) * min-cert-level: GPG Configuration Options. (line 346) * min-passphrase-len: Agent Options. (line 168) * min-passphrase-nonalpha: Agent Options. (line 173) * multi-server: Scdaemon Commands. (line 26) * multifile: Operational GPG Commands. (line 81) * no: GPG Configuration Options. (line 56) * no-armor: GPG Input and Output. (line 12) * no-batch: GPG Configuration Options. (line 39) * no-common-certs-import: Esoteric Options. (line 105) * no-default-keyring: GPG Esoteric Options. (line 351) * no-default-recipient: GPG Configuration Options. (line 25) * no-detach: Agent Options. (line 97) * no-detach <1>: Scdaemon Options. (line 118) * no-encrypt-to: GPG Key related Options. (line 37) * no-expensive-trust-checks: GPG Esoteric Options. (line 447) * no-ext-connect: Invoking gpg-connect-agent. (line 46) * no-grab: Agent Options. (line 122) * no-greeting: GPG Configuration Options. (line 666) * no-groups: GPG Key related Options. (line 59) * no-literal: GPG Esoteric Options. (line 374) * no-mangle-dos-filenames: GPG Configuration Options. (line 301) * no-mdc-warning: GPG Configuration Options. (line 685) * no-options: GPG Configuration Options. (line 276) * no-random-seed-file: GPG Configuration Options. (line 660) * no-secmem-warning: GPG Configuration Options. (line 669) * no-secmem-warning <1>: Configuration Options. (line 54) * no-sig-cache: GPG Configuration Options. (line 590) * no-sig-create-check: GPG Configuration Options. (line 599) * no-skip-hidden-recipients: GPG Key related Options. (line 75) * no-tty: GPG Configuration Options. (line 48) * no-use-standard-socket: Agent Options. (line 225) * no-verbose: GPG Configuration Options. (line 32) * not-dash-escaped: GPG Esoteric Options. (line 248) * openpgp: Compliance Options. (line 19) * options: Agent Options. (line 7) * options <1>: GPG Configuration Options. (line 271) * options <2>: Configuration Options. (line 10) * options <3>: Scdaemon Options. (line 7) * output: GPG Input and Output. (line 16) * output <1>: Input and Output. (line 51) * output <2>: gpg-zip. (line 47) * override-session-key: GPG Esoteric Options. (line 392) * p12-charset: Input and Output. (line 24) * passphrase: GPG Esoteric Options. (line 287) * passphrase <1>: Invoking gpg-preset-passphrase. (line 34) * passphrase-fd: GPG Esoteric Options. (line 270) * passphrase-file: GPG Esoteric Options. (line 278) * passphrase-repeat: GPG Esoteric Options. (line 265) * passwd: OpenPGP Key Management. (line 287) * passwd <1>: Certificate Management. (line 97) * pcsc-driver: Scdaemon Options. (line 126) * permission-warning: GPG Configuration Options. (line 672) * personal-cipher-preferences: OpenPGP Options. (line 45) * personal-compress-preferences: OpenPGP Options. (line 63) * personal-digest-preferences: OpenPGP Options. (line 54) * pgp2: Compliance Options. (line 37) * pgp6: Compliance Options. (line 50) * pgp7: Compliance Options. (line 61) * pgp8: Compliance Options. (line 67) * photo-viewer: GPG Configuration Options. (line 179) * pinentry-program: Agent Options. (line 201) * pinentry-touch-file: Agent Options. (line 205) * policy-file: Configuration Options. (line 30) * prefer-system-dirmngr: Configuration Options. (line 45) * preserve-permissions: GPG Esoteric Options. (line 450) * preset: Invoking gpg-preset-passphrase. (line 20) * primary-keyring: GPG Configuration Options. (line 218) * print-md: Operational GPG Commands. (line 314) * q: Invoking gpg-connect-agent. (line 18) * q <1>: Invoking symcryptrun. (line 33) * quiet: Agent Options. (line 28) * quiet <1>: GPG Configuration Options. (line 35) * quiet <2>: gpgv. (line 29) * quiet <3>: Invoking gpg-connect-agent. (line 18) * quiet <4>: Invoking symcryptrun. (line 33) * raw-socket: Invoking gpg-connect-agent. (line 33) * reader-port: Scdaemon Options. (line 143) * rebuild-keydb-caches: Operational GPG Commands. (line 308) * recipient: GPG Key related Options. (line 8) * recipient <1>: Input and Output. (line 46) * recipient <2>: gpg-zip. (line 36) * recv-keys: Operational GPG Commands. (line 240) * refresh-keys: Operational GPG Commands. (line 244) * reload: Invoking gpgconf. (line 48) * require-cross-certification: GPG Configuration Options. (line 694) * require-secmem: GPG Configuration Options. (line 689) * rfc1991: Compliance Options. (line 34) * rfc2440: Compliance Options. (line 30) * rfc4880: Compliance Options. (line 25) * run: Invoking gpg-connect-agent. (line 51) * s2k-cipher-algo: OpenPGP Options. (line 73) * s2k-count: OpenPGP Options. (line 90) * s2k-digest-algo: OpenPGP Options. (line 79) * s2k-mode: OpenPGP Options. (line 83) * scdaemon-program: Agent Options. (line 214) * search-keys: Operational GPG Commands. (line 253) * secret-keyring: GPG Configuration Options. (line 215) * send-keys: Operational GPG Commands. (line 200) * server: Agent Commands. (line 23) * server <1>: Operational GPGSM Commands. (line 24) * server <2>: Scdaemon Commands. (line 22) * set-filename: GPG Esoteric Options. (line 161) * set-filesize: GPG Esoteric Options. (line 378) * set-notation: GPG Esoteric Options. (line 113) * set-policy-url: GPG Esoteric Options. (line 143) * sh: Agent Options. (line 104) * show-keyring: Deprecated Options. (line 16) * show-notation: Deprecated Options. (line 25) * show-photos: Deprecated Options. (line 8) * show-policy-url: Deprecated Options. (line 33) * show-session-key: GPG Esoteric Options. (line 382) * sig-keyserver-url: GPG Esoteric Options. (line 153) * sig-notation: GPG Esoteric Options. (line 113) * sig-policy-url: GPG Esoteric Options. (line 143) * sign: Operational GPG Commands. (line 8) * sign <1>: Operational GPGSM Commands. (line 16) * sign-key: OpenPGP Key Management. (line 278) * simple-sk-checksum: GPG Configuration Options. (line 579) * skip-hidden-recipients: GPG Key related Options. (line 75) * skip-verify: GPG Esoteric Options. (line 358) * status-fd: GPG Esoteric Options. (line 65) * status-fd <1>: gpgv. (line 38) * status-file: GPG Esoteric Options. (line 69) * store: Operational GPG Commands. (line 48) * subst: Invoking gpg-connect-agent. (line 57) * symmetric: Operational GPG Commands. (line 39) * tar: gpg-zip. (line 56) * tar-args: gpg-zip. (line 59) * textmode: OpenPGP Options. (line 8) * throw-keyids: GPG Esoteric Options. (line 239) * trust-mode:always: GPG Configuration Options. (line 375) * trust-mode:auto: GPG Configuration Options. (line 384) * trust-mode:classic: GPG Configuration Options. (line 367) * trust-mode:direct: GPG Configuration Options. (line 371) * trust-mode:pgp: GPG Configuration Options. (line 362) * trust-model: GPG Configuration Options. (line 359) * trustdb-name: GPG Configuration Options. (line 223) * trusted-key: GPG Configuration Options. (line 352) * try-all-secrets: GPG Key related Options. (line 67) * ttyname: Agent Options. (line 245) * ttytype: Agent Options. (line 245) * ungroup: GPG Key related Options. (line 56) * update-trustdb: Operational GPG Commands. (line 267) * use-agent: GPG Configuration Options. (line 616) * use-embedded-filename: GPG Esoteric Options. (line 176) * use-standard-socket: Agent Options. (line 225) * utf8-strings: GPG Configuration Options. (line 264) * v: Configuration Options. (line 25) * v <1>: Scdaemon Options. (line 22) * validation-model: Certificate Options. (line 61) * verbose: Agent Options. (line 22) * verbose <1>: GPG Configuration Options. (line 28) * verbose <2>: Configuration Options. (line 25) * verbose <3>: Scdaemon Options. (line 22) * verbose <4>: watchgnupg. (line 29) * verbose <5>: gpgv. (line 24) * verbose <6>: Invoking gpg-preset-passphrase. (line 30) * verbose <7>: Invoking gpg-connect-agent. (line 14) * verbose <8>: Invoking symcryptrun. (line 29) * verify: Operational GPG Commands. (line 60) * verify <1>: Operational GPGSM Commands. (line 20) * verify-files: Operational GPG Commands. (line 89) * verify-options: GPG Configuration Options. (line 117) * verify-options:pka-lookups: GPG Configuration Options. (line 153) * verify-options:pka-trust-increase: GPG Configuration Options. (line 160) * verify-options:show-keyserver-urls: GPG Configuration Options. (line 136) * verify-options:show-notations: GPG Configuration Options. (line 132) * verify-options:show-photos: GPG Configuration Options. (line 122) * verify-options:show-policy-urls: GPG Configuration Options. (line 126) * verify-options:show-primary-uid-only: GPG Configuration Options. (line 148) * verify-options:show-std-notations: GPG Configuration Options. (line 132) * verify-options:show-uid-validity: GPG Configuration Options. (line 140) * verify-options:show-unusable-uids: GPG Configuration Options. (line 144) * verify-options:show-user-notations: GPG Configuration Options. (line 132) * version: Agent Commands. (line 10) * version <1>: General GPG Commands. (line 7) * version <2>: General GPGSM Commands. (line 7) * version <3>: Scdaemon Commands. (line 10) * version <4>: watchgnupg. (line 32) * version <5>: gpg-zip. (line 62) * warranty: General GPG Commands. (line 16) * warranty <1>: General GPGSM Commands. (line 15) * with-colons: GPG Input and Output. (line 118) * with-ephemeral-keys: Esoteric Options. (line 24) * with-fingerprint: GPG Input and Output. (line 132) * with-key-data: GPG Esoteric Options. (line 362) * with-key-data <1>: Input and Output. (line 54) * with-validation: Input and Output. (line 60) * write-env-file: Agent Options. (line 110) * xauthority: Agent Options. (line 245) * yes: GPG Configuration Options. (line 53)  File: gnupg.info, Node: Index, Prev: Option Index, Up: Top Index ***** [index] * Menu: * com-certs.pem: GPGSM Configuration. (line 84) * command options: Invoking GPG-AGENT. (line 6) * command options <1>: Invoking GPG. (line 6) * command options <2>: Invoking GPGSM. (line 6) * command options <3>: Invoking SCDAEMON. (line 6) * contributors: Contributors. (line 6) * GPG command options: Invoking GPG. (line 6) * GPG-AGENT command options: Invoking GPG-AGENT. (line 6) * gpg-agent.conf: Agent Configuration. (line 11) * gpg.conf: GPG Configuration. (line 11) * gpgconf.conf: Files used by gpgconf. (line 7) * GPGSM command options: Invoking GPGSM. (line 6) * gpgsm.conf: GPGSM Configuration. (line 11) * help.txt: GPGSM Configuration. (line 72) * options, GPG command: Invoking GPG. (line 6) * options, GPG-AGENT command: Invoking GPG-AGENT. (line 6) * options, GPGSM command: Invoking GPGSM. (line 6) * options, SCDAEMON command: Invoking SCDAEMON. (line 6) * policies.txt: GPGSM Configuration. (line 18) * pubring.kbx: GPGSM Configuration. (line 100) * qualified.txt: GPGSM Configuration. (line 33) * random_seed: GPGSM Configuration. (line 106) * relax: Agent Configuration. (line 64) * S.gpg-agent: GPGSM Configuration. (line 111) * scd-event: Scdaemon Configuration. (line 18) * SCDAEMON command options: Invoking SCDAEMON. (line 6) * scdaemon.conf: Scdaemon Configuration. (line 11) * SIGHUP: Agent Signals. (line 12) * SIGINT: Agent Signals. (line 29) * SIGTERM: Agent Signals. (line 24) * SIGUSR1: Agent Signals. (line 32) * SIGUSR2: Agent Signals. (line 35) * sshcontrol: Agent Configuration. (line 76)