1 @c Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
2 @c 2008, 2009, 2010 Free Software Foundation, Inc.
3 @c This is part of the GnuPG manual.
4 @c For copying conditions, see the file gnupg.texi.
10 @cindex GPG command options
11 @cindex command options
12 @cindex options, GPG command
15 @c Begin standard stuff
20 \- OpenPGP encryption and signing tool
37 @c Begin gpg2 hack stuff
42 \- OpenPGP encryption and signing tool
57 @c End gpg2 hack stuff
61 @command{@gpgname} is the OpenPGP part of the GNU Privacy Guard (GnuPG). It
62 is a tool to provide digital encryption and signing services using the
63 OpenPGP standard. @command{@gpgname} features complete key management and
64 all the bells and whistles you would expect from a full OpenPGP
67 There are two main versions of GnuPG: GnuPG 1.x and GnuPG 2.x. GnuPG
68 2.x supports modern encryption algorithms and thus should be preferred
69 over GnuPG 1.x. You only need to use GnuPG 1.x if your platform
70 doesn't support GnuPG 2.x, or you need support for some features that
71 GnuPG 2.x has deprecated, e.g., decrypting data created with PGP-2
75 If you are looking for version 1 of GnuPG, you may find that version
76 installed under the name @command{gpg1}.
79 In contrast to the standalone command @command{gpg} from GnuPG 1.x,
80 the 2.x version is commonly installed under the name
86 @xref{Option Index}, for an index to @command{@gpgname}'s commands and options.
90 * GPG Commands:: List of all commands.
91 * GPG Options:: List of all options.
92 * GPG Configuration:: Configuration files.
93 * GPG Examples:: Some usage examples.
95 Developer information:
96 * Unattended Usage of GPG:: Using @command{gpg} from other programs.
99 @c * GPG Protocol:: The protocol the server mode uses.
102 @c *******************************************
103 @c *************** ****************
104 @c *************** COMMANDS ****************
105 @c *************** ****************
106 @c *******************************************
111 Commands are not distinguished from options except for the fact that
112 only one command is allowed. Generally speaking, irrelevant options
113 are silently ignored, and may not be checked for correctness.
115 @command{@gpgname} may be run with no commands. In this case it will
116 perform a reasonable action depending on the type of file it is given
117 as input (an encrypted message is decrypted, a signature is verified,
118 a file containing keys is listed, etc.).
122 * General GPG Commands:: Commands not specific to the functionality.
123 * Operational GPG Commands:: Commands to select the type of operation.
124 * OpenPGP Key Management:: How to manage your keys.
128 @c *******************************************
129 @c ********** GENERAL COMMANDS *************
130 @c *******************************************
131 @node General GPG Commands
132 @subsection Commands not specific to the function
137 Print the program version and licensing information. Note that you
138 cannot abbreviate this command.
143 Print a usage message summarizing the most useful command-line options.
144 Note that you cannot arbitrarily abbreviate this command
145 (though you can use its short form @option{-h}).
149 Print warranty information.
152 @opindex dump-options
153 Print a list of all available options and commands. Note that you cannot
154 abbreviate this command.
158 @c *******************************************
159 @c ******** OPERATIONAL COMMANDS ***********
160 @c *******************************************
161 @node Operational GPG Commands
162 @subsection Commands to select the type of operation
170 Sign a message. This command may be combined with @option{--encrypt}
171 (to sign and encrypt a message), @option{--symmetric} (to sign and
172 symmetrically encrypt a message), or both @option{--encrypt} and
173 @option{--symmetric} (to sign and encrypt a message that can be
174 decrypted using a secret key or a passphrase). The signing key is
175 chosen by default or can be set explicitly using the
176 @option{--local-user} and @option{--default-key} options.
182 Make a cleartext signature. The content in a cleartext signature is
183 readable without any special software. OpenPGP software is only needed
184 to verify the signature. cleartext signatures may modify end-of-line
185 whitespace for platform independence and are not intended to be
186 reversible. The signing key is chosen by default or can be set
187 explicitly using the @option{--local-user} and @option{--default-key}
194 Make a detached signature.
199 Encrypt data. This command may be combined with @option{--sign} (to
200 sign and encrypt a message), @option{--symmetric} (to encrypt a
201 message that can decrypted using a secret key or a passphrase), or
202 @option{--sign} and @option{--symmetric} together (for a signed
203 message that can be decrypted using a secret key or a passphrase).
208 Encrypt with a symmetric cipher using a passphrase. The default
209 symmetric cipher used is @value{GPGSYMENCALGO}, but may be chosen with the
210 @option{--cipher-algo} option. This command may be combined with
211 @option{--sign} (for a signed and symmetrically encrypted message),
212 @option{--encrypt} (for a message that may be decrypted via a secret key
213 or a passphrase), or @option{--sign} and @option{--encrypt} together
214 (for a signed message that may be decrypted via a secret key or a
219 Store only (make a simple literal data packet).
224 Decrypt the file given on the command line (or STDIN if no file
225 is specified) and write it to STDOUT (or the file specified with
226 @option{--output}). If the decrypted file is signed, the signature is also
227 verified. This command differs from the default operation, as it never
228 writes to the filename which is included in the file and it rejects
229 files that don't begin with an encrypted message.
233 Assume that the first argument is a signed file and verify it without
234 generating any output. With no arguments, the signature packet is
235 read from STDIN. If only one argument is given, the specified file is
236 expected to include a complete signature.
238 With more than one argument, the first argument should specify a file
239 with a detached signature and the remaining files should contain the
240 signed data. To read the signed data from STDIN, use @samp{-} as the
241 second filename. For security reasons, a detached signature will not
242 read the signed material from STDIN if not explicitly specified.
244 Note: If the option @option{--batch} is not used, @command{@gpgname}
245 may assume that a single argument is a file with a detached signature,
246 and it will try to find a matching data file by stripping certain
247 suffixes. Using this historical feature to verify a detached
248 signature is strongly discouraged; you should always specify the data file
251 Note: When verifying a cleartext signature, @command{@gpgname} verifies
252 only what makes up the cleartext signed data and not any extra data
253 outside of the cleartext signature or the header lines directly following
254 the dash marker line. The option @code{--output} may be used to write
255 out the actual signed data, but there are other pitfalls with this
256 format as well. It is suggested to avoid cleartext signatures in
257 favor of detached signatures.
259 Note: Sometimes the use of the @command{gpgv} tool is easier than
260 using the full-fledged @command{gpg} with this option. @command{gpgv}
261 is designed to compare signed data against a list of trusted keys and
262 returns with success only for a good signature. It has its own manual
268 This modifies certain other commands to accept multiple files for
269 processing on the command line or read from STDIN with each filename on
270 a separate line. This allows for many files to be processed at
271 once. @option{--multifile} may currently be used along with
272 @option{--verify}, @option{--encrypt}, and @option{--decrypt}. Note that
273 @option{--multifile --verify} may not be used with detached signatures.
276 @opindex verify-files
277 Identical to @option{--multifile --verify}.
279 @item --encrypt-files
280 @opindex encrypt-files
281 Identical to @option{--multifile --encrypt}.
283 @item --decrypt-files
284 @opindex decrypt-files
285 Identical to @option{--multifile --decrypt}.
289 @itemx --list-public-keys
291 List the specified keys. If no keys are specified, then all keys from
292 the configured public keyrings are listed.
294 Never use the output of this command in scripts or other programs.
295 The output is intended only for humans and its format is likely to
296 change. The @option{--with-colons} option emits the output in a
297 stable, machine-parseable format, which is intended for use by scripts
300 @item --list-secret-keys
302 @opindex list-secret-keys
303 List the specified secret keys. If no keys are specified, then all
304 known secret keys are listed. A @code{#} after the letters @code{sec}
305 means that the secret key is not usable (for example, if it was
306 exported using @option{--export-secret-subkeys}). See also
307 @option{--list-keys}.
309 @item --list-signatures
310 @opindex list-signatures
313 Same as @option{--list-keys}, but the signatures are listed too.
314 This command has the same effect as
315 using @option{--list-keys} with @option{--with-sig-list}.
317 For each signature listed, there are several flags in between the "sig"
318 tag and keyid. These flags give additional information about each
319 signature. From left to right, they are the numbers 1-3 for certificate
320 check level (see @option{--ask-cert-level}), "L" for a local or
321 non-exportable signature (see @option{--lsign-key}), "R" for a
322 nonRevocable signature (see the @option{--edit-key} command "nrsign"),
323 "P" for a signature that contains a policy URL (see
324 @option{--cert-policy-url}), "N" for a signature that contains a
325 notation (see @option{--cert-notation}), "X" for an eXpired signature
326 (see @option{--ask-cert-expire}), and the numbers 1-9 or "T" for 10 and
327 above to indicate trust signature levels (see the @option{--edit-key}
330 @item --check-signatures
331 @opindex check-signatures
334 Same as @option{--list-signatures}, but the signatures are verified. Note
335 that for performance reasons the revocation status of a signing key is
337 This command has the same effect as
338 using @option{--list-keys} with @option{--with-sig-check}.
340 The status of the verification is indicated by a flag directly following
341 the "sig" tag (and thus before the flags described above for
342 @option{--list-signatures}). A "!" indicates that the signature has been
343 successfully verified, a "-" denotes a bad signature and a "%" is used
344 if an error occurred while checking the signature (e.g. a non supported
349 Locate the keys given as arguments. This command basically uses the
350 same algorithm as used when locating keys for encryption or signing and
351 may thus be used to see what keys @command{@gpgname} might use. In
352 particular external methods as defined by @option{--auto-key-locate} may
353 be used to locate a key. Only public keys are listed.
357 List all keys (or the specified ones) along with their
358 fingerprints. This is the same output as @option{--list-keys} but with
359 the additional output of a line with the fingerprint. May also be
360 combined with @option{--list-signatures} or @option{--check-signatures}. If this
361 command is given twice, the fingerprints of all secondary keys are
362 listed too. This command also forces pretty printing of fingerprints
363 if the keyid format has been set to "none".
366 @opindex list-packets
367 List only the sequence of packets. This command is only useful for
368 debugging. When used with option @option{--verbose} the actual MPI
369 values are dumped and not only their lengths. Note that the output of
370 this command may change with new releases.
377 Present a menu to work with a smartcard. The subcommand "help" provides
378 an overview on available commands. For a detailed description, please
379 see the Card HOWTO at
380 https://gnupg.org/documentation/howtos.html#GnuPG-cardHOWTO .
384 Show the content of the smart card.
388 Present a menu to allow changing the PIN of a smartcard. This
389 functionality is also available as the subcommand "passwd" with the
390 @option{--edit-card} command.
392 @item --delete-keys @code{name}
393 @itemx --delete-keys @code{name}
394 Remove key from the public keyring. In batch mode either @option{--yes} is
395 required or the key must be specified by fingerprint. This is a
396 safeguard against accidental deletion of multiple keys.
398 @item --delete-secret-keys @code{name}
399 @opindex delete-secret-keys
400 Remove key from the secret keyring. In batch mode the key must be
401 specified by fingerprint. The option @option{--yes} can be used to
402 advice gpg-agent not to request a confirmation. This extra
403 pre-caution is done because @command{@gpgname} can't be sure that the
404 secret key (as controlled by gpg-agent) is only used for the given
408 @item --delete-secret-and-public-key @code{name}
409 @opindex delete-secret-and-public-key
410 Same as @option{--delete-key}, but if a secret key exists, it will be
411 removed first. In batch mode the key must be specified by fingerprint.
412 The option @option{--yes} can be used to advice gpg-agent not to
413 request a confirmation.
417 Either export all keys from all keyrings (default keyrings and those
418 registered via option @option{--keyring}), or if at least one name is given,
419 those of the given name. The exported keys are written to STDOUT or to the
420 file given with option @option{--output}. Use together with
421 @option{--armor} to mail those keys.
423 @item --send-keys @code{key IDs}
425 Similar to @option{--export} but sends the keys to a keyserver.
426 Fingerprints may be used instead of key IDs. Option @option{--keyserver}
427 must be used to give the name of this keyserver. Don't send your
428 complete keyring to a keyserver --- select only those keys which are new
429 or changed by you. If no key IDs are given, @command{@gpgname} does nothing.
431 @item --export-secret-keys
432 @itemx --export-secret-subkeys
433 @opindex export-secret-keys
434 @opindex export-secret-subkeys
435 Same as @option{--export}, but exports the secret keys instead. The
436 exported keys are written to STDOUT or to the file given with option
437 @option{--output}. This command is often used along with the option
438 @option{--armor} to allow for easy printing of the key for paper backup;
439 however the external tool @command{paperkey} does a better job of
440 creating backups on paper. Note that exporting a secret key can be a
441 security risk if the exported keys are sent over an insecure channel.
443 The second form of the command has the special property to render the
444 secret part of the primary key useless; this is a GNU extension to
445 OpenPGP and other implementations can not be expected to successfully
446 import such a key. Its intended use is in generating a full key with
447 an additional signing subkey on a dedicated machine. This command
448 then exports the key without the primary key to the main machine.
450 GnuPG may ask you to enter the passphrase for the key. This is
451 required, because the internal protection method of the secret key is
452 different from the one specified by the OpenPGP protocol.
454 @item --export-ssh-key
455 @opindex export-ssh-key
456 This command is used to export a key in the OpenSSH public key format.
457 It requires the specification of one key by the usual means and
458 exports the latest valid subkey which has an authentication capability
459 to STDOUT or to the file given with option @option{--output}. That
460 output can directly be added to ssh's @file{authorized_key} file.
462 By specifying the key to export using a key ID or a fingerprint
463 suffixed with an exclamation mark (!), a specific subkey or the
464 primary key can be exported. This does not even require that the key
465 has the authentication capability flag set.
470 Import/merge keys. This adds the given keys to the
471 keyring. The fast version is currently just a synonym.
473 There are a few other options which control how this command works.
474 Most notable here is the @option{--import-options merge-only} option
475 which does not insert new keys but does only the merging of new
476 signatures, user-IDs and subkeys.
478 @item --receive-keys @code{key IDs}
479 @opindex receive-keys
480 @itemx --recv-keys @code{key IDs}
482 Import the keys with the given key IDs from a keyserver. Option
483 @option{--keyserver} must be used to give the name of this keyserver.
486 @opindex refresh-keys
487 Request updates from a keyserver for keys that already exist on the
488 local keyring. This is useful for updating a key with the latest
489 signatures, user IDs, etc. Calling this with no arguments will refresh
490 the entire keyring. Option @option{--keyserver} must be used to give the
491 name of the keyserver for all keys that do not have preferred keyservers
492 set (see @option{--keyserver-options honor-keyserver-url}).
494 @item --search-keys @code{names}
496 Search the keyserver for the given names. Multiple names given here will
497 be joined together to create the search string for the keyserver.
498 Option @option{--keyserver} must be used to give the name of this
499 keyserver. Keyservers that support different search methods allow using
500 the syntax specified in "How to specify a user ID" below. Note that
501 different keyserver types support different search methods. Currently
502 only LDAP supports them all.
504 @item --fetch-keys @code{URIs}
506 Retrieve keys located at the specified URIs. Note that different
507 installations of GnuPG may support different protocols (HTTP, FTP,
508 LDAP, etc.). When using HTTPS the system provided root certificates
509 are used by this command.
511 @item --update-trustdb
512 @opindex update-trustdb
513 Do trust database maintenance. This command iterates over all keys and
514 builds the Web of Trust. This is an interactive command because it may
515 have to ask for the "ownertrust" values for keys. The user has to give
516 an estimation of how far she trusts the owner of the displayed key to
517 correctly certify (sign) other keys. GnuPG only asks for the ownertrust
518 value if it has not yet been assigned to a key. Using the
519 @option{--edit-key} menu, the assigned value can be changed at any time.
521 @item --check-trustdb
522 @opindex check-trustdb
523 Do trust database maintenance without user interaction. From time to
524 time the trust database must be updated so that expired keys or
525 signatures and the resulting changes in the Web of Trust can be
526 tracked. Normally, GnuPG will calculate when this is required and do it
527 automatically unless @option{--no-auto-check-trustdb} is set. This
528 command can be used to force a trust database check at any time. The
529 processing is identical to that of @option{--update-trustdb} but it
530 skips keys with a not yet defined "ownertrust".
532 For use with cron jobs, this command can be used together with
533 @option{--batch} in which case the trust database check is done only if
534 a check is needed. To force a run even in batch mode add the option
537 @anchor{option --export-ownertrust}
538 @item --export-ownertrust
539 @opindex export-ownertrust
540 Send the ownertrust values to STDOUT. This is useful for backup purposes
541 as these values are the only ones which can't be re-created from a
542 corrupted trustdb. Example:
545 @gpgname{} --export-ownertrust > otrust.txt
550 @item --import-ownertrust
551 @opindex import-ownertrust
552 Update the trustdb with the ownertrust values stored in @code{files} (or
553 STDIN if not given); existing values will be overwritten. In case of a
554 severely damaged trustdb and if you have a recent backup of the
555 ownertrust values (e.g. in the file @file{otrust.txt}), you may re-create
556 the trustdb using these commands:
561 @gpgname{} --import-ownertrust < otrust.txt
566 @item --rebuild-keydb-caches
567 @opindex rebuild-keydb-caches
568 When updating from version 1.0.6 to 1.0.7 this command should be used
569 to create signature caches in the keyring. It might be handy in other
572 @item --print-md @code{algo}
575 Print message digest of algorithm ALGO for all given files or STDIN.
576 With the second form (or a deprecated "*" as algo) digests for all
577 available algorithms are printed.
579 @item --gen-random @code{0|1|2} @code{count}
581 Emit @var{count} random bytes of the given quality level 0, 1 or 2. If
582 @var{count} is not given or zero, an endless sequence of random bytes
583 will be emitted. If used with @option{--armor} the output will be
584 base64 encoded. PLEASE, don't use this command unless you know what
585 you are doing; it may remove precious entropy from the system!
587 @item --gen-prime @code{mode} @code{bits}
589 Use the source, Luke :-). The output format is still subject to change.
596 Pack or unpack an arbitrary input into/from an OpenPGP ASCII armor.
597 This is a GnuPG extension to OpenPGP and in general not very useful.
599 @item --tofu-policy @code{auto|good|unknown|bad|ask} @code{key...}
601 Set the TOFU policy for all the bindings associated with the specified
602 keys. For more information about the meaning of the policies,
603 @pxref{trust-model-tofu}. The keys may be specified either by their
604 fingerprint (preferred) or their keyid.
608 @c Run gpg in server mode. This feature is not yet ready for use and
609 @c thus not documented.
614 @c *******************************************
615 @c ******* KEY MANGEMENT COMMANDS **********
616 @c *******************************************
617 @node OpenPGP Key Management
618 @subsection How to manage your keys
620 This section explains the main commands for key management.
624 @item --quick-generate-key @code{user-id} [@code{algo} [@code{usage} [@code{expire}]]]
625 @opindex quick-generate-key
626 This is a simple command to generate a standard key with one user id.
627 In contrast to @option{--generate-key} the key is generated directly
628 without the need to answer a bunch of prompts. Unless the option
629 @option{--yes} is given, the key creation will be canceled if the
630 given user id already exists in the keyring.
632 If invoked directly on the console without any special options an
633 answer to a ``Continue?'' style confirmation prompt is required. In
634 case the user id already exists in the keyring a second prompt to
635 force the creation of the key will show up.
637 If @code{algo} or @code{usage} are given, only the primary key is
638 created and no prompts are shown. To specify an expiration date but
639 still create a primary and subkey use ``default'' or
640 ``future-default'' for @code{algo} and ``default'' for @code{usage}.
641 For a description of these optional arguments see the command
642 @code{--quick-add-key}. The @code{usage} accepts also the value
643 ``cert'' which can be used to create a certification only primary key;
644 the default is to a create certification and signing key.
646 The @code{expire} argument can be used to specify an expiration date
647 for the key. Several formats are supported; commonly the ISO formats
648 ``YYYY-MM-DD'' or ``YYYYMMDDThhmmss'' are used. To make the key
649 expire in N seconds, N days, N weeks, N months, or N years use
650 ``seconds=N'', ``Nd'', ``Nw'', ``Nm'', or ``Ny'' respectively. Not
651 specifying a value, or using ``-'' results in a key expiring in a
652 reasonable default interval. The values ``never'', ``none'' can be
653 used for no expiration date.
655 If this command is used with @option{--batch},
656 @option{--pinentry-mode} has been set to @code{loopback}, and one of
657 the passphrase options (@option{--passphrase},
658 @option{--passphrase-fd}, or @option{passphrase-file}) is used, the
659 supplied passphrase is used for the new key and the agent does not ask
660 for it. To create a key without any protection @code{--passphrase ''}
663 @item --quick-set-expire @code{fpr} @code{expire}
664 @opindex quick-set-expire
665 Directly set the expiration time of the primary key to @code{expire}.
666 To remove the expiration time @code{0} can be used.
669 @item --quick-add-key @code{fpr} [@code{algo} [@code{usage} [@code{expire}]]]
670 @opindex quick-add-key
671 Directly add a subkey to the key identified by the fingerprint
672 @code{fpr}. Without the optional arguments an encryption subkey is
673 added. If any of the arguments are given a more specific subkey is
676 @code{algo} may be any of the supported algorithms or curve names
677 given in the format as used by key listings. To use the default
678 algorithm the string ``default'' or ``-'' can be used. Supported
679 algorithms are ``rsa'', ``dsa'', ``elg'', ``ed25519'', ``cv25519'',
680 and other ECC curves. For example the string ``rsa'' adds an RSA key
681 with the default key length; a string ``rsa4096'' requests that the
682 key length is 4096 bits. The string ``future-default'' is an alias
683 for the algorithm which will likely be used as default algorithm in
684 future versions of gpg.
686 Depending on the given @code{algo} the subkey may either be an
687 encryption subkey or a signing subkey. If an algorithm is capable of
688 signing and encryption and such a subkey is desired, a @code{usage}
689 string must be given. This string is either ``default'' or ``-'' to
690 keep the default or a comma delimited list (or space delimited list)
691 of keywords: ``sign'' for a signing subkey, ``auth'' for an
692 authentication subkey, and ``encr'' for an encryption subkey
693 (``encrypt'' can be used as alias for ``encr''). The valid
694 combinations depend on the algorithm.
696 The @code{expire} argument can be used to specify an expiration date
697 for the key. Several formats are supported; commonly the ISO formats
698 ``YYYY-MM-DD'' or ``YYYYMMDDThhmmss'' are used. To make the key
699 expire in N seconds, N days, N weeks, N months, or N years use
700 ``seconds=N'', ``Nd'', ``Nw'', ``Nm'', or ``Ny'' respectively. Not
701 specifying a value, or using ``-'' results in a key expiring in a
702 reasonable default interval. The values ``never'', ``none'' can be
703 used for no expiration date.
706 @opindex generate-key
709 Generate a new key pair using the current default parameters. This is
710 the standard command to create a new key. In addition to the key a
711 revocation certificate is created and stored in the
712 @file{openpgp-revocs.d} directory below the GnuPG home directory.
714 @item --full-generate-key
715 @opindex full-generate-key
716 @itemx --full-gen-key
717 @opindex full-gen-key
718 Generate a new key pair with dialogs for all options. This is an
719 extended version of @option{--generate-key}.
721 There is also a feature which allows you to create keys in batch
722 mode. See the manual section ``Unattended key generation'' on how
726 @item --generate-revocation @code{name}
727 @opindex generate-revocation
728 @itemx --gen-revoke @code{name}
730 Generate a revocation certificate for the complete key. To only revoke
731 a subkey or a key signature, use the @option{--edit} command.
733 This command merely creates the revocation certificate so that it can
734 be used to revoke the key if that is ever needed. To actually revoke
735 a key the created revocation certificate needs to be merged with the
736 key to revoke. This is done by importing the revocation certificate
737 using the @option{--import} command. Then the revoked key needs to be
738 published, which is best done by sending the key to a keyserver
739 (command @option{--send-key}) and by exporting (@option{--export}) it
740 to a file which is then send to frequent communication partners.
743 @item --generate-designated-revocation @code{name}
744 @opindex generate-designated-revocation
745 @itemx --desig-revoke @code{name}
746 @opindex desig-revoke
747 Generate a designated revocation certificate for a key. This allows a
748 user (with the permission of the keyholder) to revoke someone else's
754 Present a menu which enables you to do most of the key management
755 related tasks. It expects the specification of a key on the command
758 @c ******** Begin Edit-key Options **********
763 Toggle selection of user ID or photographic user ID with index @code{n}.
764 Use @code{*} to select all and @code{0} to deselect all.
768 Toggle selection of subkey with index @code{n} or key ID @code{n}.
769 Use @code{*} to select all and @code{0} to deselect all.
772 @opindex keyedit:sign
773 Make a signature on key of user @code{name}. If the key is not yet
774 signed by the default user (or the users given with @option{-u}), the program
775 displays the information of the key again, together with its
776 fingerprint and asks whether it should be signed. This question is
777 repeated for all users specified with
781 @opindex keyedit:lsign
782 Same as "sign" but the signature is marked as non-exportable and will
783 therefore never be used by others. This may be used to make keys
784 valid only in the local environment.
787 @opindex keyedit:nrsign
788 Same as "sign" but the signature is marked as non-revocable and can
789 therefore never be revoked.
792 @opindex keyedit:tsign
793 Make a trust signature. This is a signature that combines the notions
794 of certification (like a regular signature), and trust (like the
795 "trust" command). It is generally only useful in distinct communities
796 or groups. For more information please read the sections
797 ``Trust Signature'' and ``Regular Expression'' in RFC-4880.
801 Note that "l" (for local / non-exportable), "nr" (for non-revocable,
802 and "t" (for trust) may be freely mixed and prefixed to "sign" to
803 create a signature of any type desired.
806 If the option @option{--only-sign-text-ids} is specified, then any
807 non-text based user ids (e.g., photo IDs) will not be selected for
813 @opindex keyedit:delsig
814 Delete a signature. Note that it is not possible to retract a signature,
815 once it has been send to the public (i.e. to a keyserver). In that case
816 you better use @code{revsig}.
819 @opindex keyedit:revsig
820 Revoke a signature. For every signature which has been generated by
821 one of the secret keys, GnuPG asks whether a revocation certificate
825 @opindex keyedit:check
826 Check the signatures on all selected user IDs. With the extra
827 option @code{selfsig} only self-signatures are shown.
830 @opindex keyedit:adduid
831 Create an additional user ID.
834 @opindex keyedit:addphoto
835 Create a photographic user ID. This will prompt for a JPEG file that
836 will be embedded into the user ID. Note that a very large JPEG will make
837 for a very large key. Also note that some programs will display your
838 JPEG unchanged (GnuPG), and some programs will scale it to fit in a
842 @opindex keyedit:showphoto
843 Display the selected photographic user ID.
846 @opindex keyedit:deluid
847 Delete a user ID or photographic user ID. Note that it is not
848 possible to retract a user id, once it has been send to the public
849 (i.e. to a keyserver). In that case you better use @code{revuid}.
852 @opindex keyedit:revuid
853 Revoke a user ID or photographic user ID.
856 @opindex keyedit:primary
857 Flag the current user id as the primary one, removes the primary user
858 id flag from all other user ids and sets the timestamp of all affected
859 self-signatures one second ahead. Note that setting a photo user ID
860 as primary makes it primary over other photo user IDs, and setting a
861 regular user ID as primary makes it primary over other regular user
865 @opindex keyedit:keyserver
866 Set a preferred keyserver for the specified user ID(s). This allows
867 other users to know where you prefer they get your key from. See
868 @option{--keyserver-options honor-keyserver-url} for more on how this
869 works. Setting a value of "none" removes an existing preferred
873 @opindex keyedit:notation
874 Set a name=value notation for the specified user ID(s). See
875 @option{--cert-notation} for more on how this works. Setting a value of
876 "none" removes all notations, setting a notation prefixed with a minus
877 sign (-) removes that notation, and setting a notation name (without the
878 =value) prefixed with a minus sign removes all notations with that name.
881 @opindex keyedit:pref
882 List preferences from the selected user ID. This shows the actual
883 preferences, without including any implied preferences.
886 @opindex keyedit:showpref
887 More verbose preferences listing for the selected user ID. This shows
888 the preferences in effect by including the implied preferences of 3DES
889 (cipher), SHA-1 (digest), and Uncompressed (compression) if they are
890 not already included in the preference list. In addition, the
891 preferred keyserver and signature notations (if any) are shown.
893 @item setpref @code{string}
894 @opindex keyedit:setpref
895 Set the list of user ID preferences to @code{string} for all (or just
896 the selected) user IDs. Calling setpref with no arguments sets the
897 preference list to the default (either built-in or set via
898 @option{--default-preference-list}), and calling setpref with "none"
899 as the argument sets an empty preference list. Use @command{@gpgname
900 --version} to get a list of available algorithms. Note that while you
901 can change the preferences on an attribute user ID (aka "photo ID"),
902 GnuPG does not select keys via attribute user IDs so these preferences
903 will not be used by GnuPG.
905 When setting preferences, you should list the algorithms in the order
906 which you'd like to see them used by someone else when encrypting a
907 message to your key. If you don't include 3DES, it will be
908 automatically added at the end. Note that there are many factors that
909 go into choosing an algorithm (for example, your key may not be the
910 only recipient), and so the remote OpenPGP application being used to
911 send to you may or may not follow your exact chosen order for a given
912 message. It will, however, only choose an algorithm that is present
913 on the preference list of every recipient key. See also the
914 INTEROPERABILITY WITH OTHER OPENPGP PROGRAMS section below.
917 @opindex keyedit:addkey
918 Add a subkey to this key.
921 @opindex keyedit:addcardkey
922 Generate a subkey on a card and add it to this key.
925 @opindex keyedit:keytocard
926 Transfer the selected secret subkey (or the primary key if no subkey
927 has been selected) to a smartcard. The secret key in the keyring will
928 be replaced by a stub if the key could be stored successfully on the
929 card and you use the save command later. Only certain key types may be
930 transferred to the card. A sub menu allows you to select on what card
931 to store the key. Note that it is not possible to get that key back
932 from the card - if the card gets broken your secret key will be lost
933 unless you have a backup somewhere.
935 @item bkuptocard @code{file}
936 @opindex keyedit:bkuptocard
937 Restore the given file to a card. This command may be used to restore a
938 backup key (as generated during card initialization) to a new card. In
939 almost all cases this will be the encryption key. You should use this
940 command only with the corresponding public key and make sure that the
941 file given as argument is indeed the backup to restore. You should then
942 select 2 to restore as encryption key. You will first be asked to enter
943 the passphrase of the backup key and then for the Admin PIN of the card.
946 @opindex keyedit:delkey
947 Remove a subkey (secondary key). Note that it is not possible to retract
948 a subkey, once it has been send to the public (i.e. to a keyserver). In
949 that case you better use @code{revkey}. Also note that this only
950 deletes the public part of a key.
953 @opindex keyedit:revkey
957 @opindex keyedit:expire
958 Change the key or subkey expiration time. If a subkey is selected, the
959 expiration time of this subkey will be changed. With no selection, the
960 key expiration of the primary key is changed.
963 @opindex keyedit:trust
964 Change the owner trust value for the key. This updates the trust-db
965 immediately and no save is required.
969 @opindex keyedit:disable
970 @opindex keyedit:enable
971 Disable or enable an entire key. A disabled key can not normally be
975 @opindex keyedit:addrevoker
976 Add a designated revoker to the key. This takes one optional argument:
977 "sensitive". If a designated revoker is marked as sensitive, it will
978 not be exported by default (see export-options).
981 @opindex keyedit:passwd
982 Change the passphrase of the secret key.
985 @opindex keyedit:toggle
986 This is dummy command which exists only for backward compatibility.
989 @opindex keyedit:clean
990 Compact (by removing all signatures except the selfsig) any user ID
991 that is no longer usable (e.g. revoked, or expired). Then, remove any
992 signatures that are not usable by the trust calculations.
993 Specifically, this removes any signature that does not validate, any
994 signature that is superseded by a later signature, revoked signatures,
995 and signatures issued by keys that are not present on the keyring.
998 @opindex keyedit:minimize
999 Make the key as small as possible. This removes all signatures from
1000 each user ID except for the most recent self-signature.
1003 @opindex keyedit:cross-certify
1004 Add cross-certification signatures to signing subkeys that may not
1005 currently have them. Cross-certification signatures protect against a
1006 subtle attack against signing subkeys. See
1007 @option{--require-cross-certification}. All new keys generated have
1008 this signature by default, so this command is only useful to bring
1009 older keys up to date.
1012 @opindex keyedit:save
1013 Save all changes to the keyrings and quit.
1016 @opindex keyedit:quit
1017 Quit the program without updating the
1022 The listing shows you the key with its secondary keys and all user
1023 ids. The primary user id is indicated by a dot, and selected keys or
1024 user ids are indicated by an asterisk. The trust
1025 value is displayed with the primary key: the first is the assigned owner
1026 trust and the second is the calculated trust value. Letters are used for
1033 No ownertrust assigned / not yet calculated.
1037 calculation has failed; probably due to an expired key.
1040 Not enough information for calculation.
1043 Never trust this key.
1055 @c ******** End Edit-key Options **********
1057 @item --sign-key @code{name}
1059 Signs a public key with your secret key. This is a shortcut version of
1060 the subcommand "sign" from @option{--edit}.
1062 @item --lsign-key @code{name}
1064 Signs a public key with your secret key but marks it as
1065 non-exportable. This is a shortcut version of the subcommand "lsign"
1066 from @option{--edit-key}.
1068 @item --quick-sign-key @code{fpr} [@code{names}]
1069 @itemx --quick-lsign-key @code{fpr} [@code{names}]
1070 @opindex quick-sign-key
1071 @opindex quick-lsign-key
1072 Directly sign a key from the passphrase without any further user
1073 interaction. The @code{fpr} must be the verified primary fingerprint
1074 of a key in the local keyring. If no @code{names} are given, all
1075 useful user ids are signed; with given [@code{names}] only useful user
1076 ids matching one of theses names are signed. By default, or if a name
1077 is prefixed with a '*', a case insensitive substring match is used.
1078 If a name is prefixed with a '=' a case sensitive exact match is done.
1080 The command @option{--quick-lsign-key} marks the signatures as
1081 non-exportable. If such a non-exportable signature already exists the
1082 @option{--quick-sign-key} turns it into a exportable signature.
1084 This command uses reasonable defaults and thus does not provide the
1085 full flexibility of the "sign" subcommand from @option{--edit-key}.
1086 Its intended use is to help unattended key signing by utilizing a list
1087 of verified fingerprints.
1089 @item --quick-add-uid @var{user-id} @var{new-user-id}
1090 @opindex quick-add-uid
1091 This command adds a new user id to an existing key. In contrast to
1092 the interactive sub-command @code{adduid} of @option{--edit-key} the
1093 @var{new-user-id} is added verbatim with only leading and trailing
1094 white space removed, it is expected to be UTF-8 encoded, and no checks
1095 on its form are applied.
1097 @item --quick-revoke-uid @var{user-id} @var{user-id-to-revoke}
1098 @opindex quick-revoke-uid
1099 This command revokes a User ID on an existing key. It cannot be used
1100 to revoke the last User ID on key (some non-revoked User ID must
1101 remain), with revocation reason ``User ID is no longer valid''. If
1102 you want to specify a different revocation reason, or to supply
1103 supplementary revocation text, you should use the interactive
1104 sub-command @code{revuid} of @option{--edit-key}.
1106 @item --change-passphrase @var{user_id}
1107 @opindex change-passphrase
1108 @itemx --passwd @var{user_id}
1110 Change the passphrase of the secret key belonging to the certificate
1111 specified as @var{user_id}. This is a shortcut for the sub-command
1112 @code{passwd} of the edit key menu.
1117 @c *******************************************
1118 @c *************** ****************
1119 @c *************** OPTIONS ****************
1120 @c *************** ****************
1121 @c *******************************************
1124 @section Option Summary
1126 @command{@gpgname} features a bunch of options to control the exact
1127 behaviour and to change the default configuration.
1130 * GPG Configuration Options:: How to change the configuration.
1131 * GPG Key related Options:: Key related options.
1132 * GPG Input and Output:: Input and Output.
1133 * OpenPGP Options:: OpenPGP protocol specific options.
1134 * Compliance Options:: Compliance options.
1135 * GPG Esoteric Options:: Doing things one usually doesn't want to do.
1136 * Deprecated Options:: Deprecated options.
1139 Long options can be put in an options file (default
1140 "~/.gnupg/gpg.conf"). Short option names will not work - for example,
1141 "armor" is a valid option for the options file, while "a" is not. Do not
1142 write the 2 dashes, but simply the name of the option and any required
1143 arguments. Lines with a hash ('#') as the first non-white-space
1144 character are ignored. Commands may be put in this file too, but that is
1145 not generally useful as the command will execute automatically with
1146 every execution of gpg.
1148 Please remember that option parsing stops as soon as a non-option is
1149 encountered, you can explicitly stop parsing by using the special option
1152 @c *******************************************
1153 @c ******** CONFIGURATION OPTIONS **********
1154 @c *******************************************
1155 @node GPG Configuration Options
1156 @subsection How to change the configuration
1158 These options are used to change the configuration and are usually found
1163 @item --default-key @var{name}
1164 @opindex default-key
1165 Use @var{name} as the default key to sign with. If this option is not
1166 used, the default key is the first key found in the secret keyring.
1167 Note that @option{-u} or @option{--local-user} overrides this option.
1168 This option may be given multiple times. In this case, the last key
1169 for which a secret key is available is used. If there is no secret
1170 key available for any of the specified values, GnuPG will not emit an
1171 error message but continue as if this option wasn't given.
1173 @item --default-recipient @var{name}
1174 @opindex default-recipient
1175 Use @var{name} as default recipient if option @option{--recipient} is
1176 not used and don't ask if this is a valid one. @var{name} must be
1179 @item --default-recipient-self
1180 @opindex default-recipient-self
1181 Use the default key as default recipient if option @option{--recipient} is not
1182 used and don't ask if this is a valid one. The default key is the first
1183 one from the secret keyring or the one set with @option{--default-key}.
1185 @item --no-default-recipient
1186 @opindex no-default-recipient
1187 Reset @option{--default-recipient} and @option{--default-recipient-self}.
1191 Give more information during processing. If used
1192 twice, the input data is listed in detail.
1196 Reset verbose level to 0.
1200 Try to be as quiet as possible.
1206 Use batch mode. Never ask, do not allow interactive commands.
1207 @option{--no-batch} disables this option. Note that even with a
1208 filename given on the command line, gpg might still need to read from
1209 STDIN (in particular if gpg figures that the input is a
1210 detached signature and no data file has been specified). Thus if you
1211 do not want to feed data via STDIN, you should connect STDIN to
1214 It is highly recommended to use this option along with the options
1215 @option{--status-fd} and @option{--with-colons} for any unattended of
1220 Make sure that the TTY (terminal) is never used for any output.
1221 This option is needed in some cases because GnuPG sometimes prints
1222 warnings to the TTY even if @option{--batch} is used.
1226 Assume "yes" on most questions.
1230 Assume "no" on most questions.
1233 @item --list-options @code{parameters}
1234 @opindex list-options
1235 This is a space or comma delimited string that gives options used when
1236 listing keys and signatures (that is, @option{--list-keys},
1237 @option{--list-signatures}, @option{--list-public-keys},
1238 @option{--list-secret-keys}, and the @option{--edit-key} functions).
1239 Options can be prepended with a @option{no-} (after the two dashes) to
1240 give the opposite meaning. The options are:
1245 @opindex list-options:show-photos
1246 Causes @option{--list-keys}, @option{--list-signatures},
1247 @option{--list-public-keys}, and @option{--list-secret-keys} to
1248 display any photo IDs attached to the key. Defaults to no. See also
1249 @option{--photo-viewer}. Does not work with @option{--with-colons}:
1250 see @option{--attribute-fd} for the appropriate way to get photo data
1251 for scripts and other frontends.
1254 @opindex list-options:show-usage
1255 Show usage information for keys and subkeys in the standard key
1256 listing. This is a list of letters indicating the allowed usage for a
1257 key (@code{E}=encryption, @code{S}=signing, @code{C}=certification,
1258 @code{A}=authentication). Defaults to yes.
1260 @item show-policy-urls
1261 @opindex list-options:show-policy-urls
1262 Show policy URLs in the @option{--list-signatures} or @option{--check-signatures}
1263 listings. Defaults to no.
1265 @item show-notations
1266 @itemx show-std-notations
1267 @itemx show-user-notations
1268 @opindex list-options:show-notations
1269 @opindex list-options:show-std-notations
1270 @opindex list-options:show-user-notations
1271 Show all, IETF standard, or user-defined signature notations in the
1272 @option{--list-signatures} or @option{--check-signatures} listings. Defaults to no.
1274 @item show-keyserver-urls
1275 @opindex list-options:show-keyserver-urls
1276 Show any preferred keyserver URL in the @option{--list-signatures} or
1277 @option{--check-signatures} listings. Defaults to no.
1279 @item show-uid-validity
1280 @opindex list-options:show-uid-validity
1281 Display the calculated validity of user IDs during key listings.
1284 @item show-unusable-uids
1285 @opindex list-options:show-unusable-uids
1286 Show revoked and expired user IDs in key listings. Defaults to no.
1288 @item show-unusable-subkeys
1289 @opindex list-options:show-unusable-subkeys
1290 Show revoked and expired subkeys in key listings. Defaults to no.
1293 @opindex list-options:show-keyring
1294 Display the keyring name at the head of key listings to show which
1295 keyring a given key resides on. Defaults to no.
1297 @item show-sig-expire
1298 @opindex list-options:show-sig-expire
1299 Show signature expiration dates (if any) during @option{--list-signatures} or
1300 @option{--check-signatures} listings. Defaults to no.
1302 @item show-sig-subpackets
1303 @opindex list-options:show-sig-subpackets
1304 Include signature subpackets in the key listing. This option can take an
1305 optional argument list of the subpackets to list. If no argument is
1306 passed, list all subpackets. Defaults to no. This option is only
1307 meaningful when using @option{--with-colons} along with
1308 @option{--list-signatures} or @option{--check-signatures}.
1312 @item --verify-options @code{parameters}
1313 @opindex verify-options
1314 This is a space or comma delimited string that gives options used when
1315 verifying signatures. Options can be prepended with a `no-' to give
1316 the opposite meaning. The options are:
1321 @opindex verify-options:show-photos
1322 Display any photo IDs present on the key that issued the signature.
1323 Defaults to no. See also @option{--photo-viewer}.
1325 @item show-policy-urls
1326 @opindex verify-options:show-policy-urls
1327 Show policy URLs in the signature being verified. Defaults to yes.
1329 @item show-notations
1330 @itemx show-std-notations
1331 @itemx show-user-notations
1332 @opindex verify-options:show-notations
1333 @opindex verify-options:show-std-notations
1334 @opindex verify-options:show-user-notations
1335 Show all, IETF standard, or user-defined signature notations in the
1336 signature being verified. Defaults to IETF standard.
1338 @item show-keyserver-urls
1339 @opindex verify-options:show-keyserver-urls
1340 Show any preferred keyserver URL in the signature being verified.
1343 @item show-uid-validity
1344 @opindex verify-options:show-uid-validity
1345 Display the calculated validity of the user IDs on the key that issued
1346 the signature. Defaults to yes.
1348 @item show-unusable-uids
1349 @opindex verify-options:show-unusable-uids
1350 Show revoked and expired user IDs during signature verification.
1353 @item show-primary-uid-only
1354 @opindex verify-options:show-primary-uid-only
1355 Show only the primary user ID during signature verification. That is
1356 all the AKA lines as well as photo Ids are not shown with the signature
1357 verification status.
1360 @opindex verify-options:pka-lookups
1361 Enable PKA lookups to verify sender addresses. Note that PKA is based
1362 on DNS, and so enabling this option may disclose information on when
1363 and what signatures are verified or to whom data is encrypted. This
1364 is similar to the "web bug" described for the @option{--auto-key-retrieve}
1367 @item pka-trust-increase
1368 @opindex verify-options:pka-trust-increase
1369 Raise the trust in a signature to full if the signature passes PKA
1370 validation. This option is only meaningful if pka-lookups is set.
1373 @item --enable-large-rsa
1374 @itemx --disable-large-rsa
1375 @opindex enable-large-rsa
1376 @opindex disable-large-rsa
1377 With --generate-key and --batch, enable the creation of RSA secret keys as
1378 large as 8192 bit. Note: 8192 bit is more than is generally
1379 recommended. These large keys don't significantly improve security,
1380 but they are more expensive to use, and their signatures and
1381 certifications are larger. This option is only available if the
1382 binary was build with large-secmem support.
1385 @itemx --disable-dsa2
1386 @opindex enable-dsa2
1387 @opindex disable-dsa2
1388 Enable hash truncation for all DSA keys even for old DSA Keys up to
1389 1024 bit. This is also the default with @option{--openpgp}. Note
1390 that older versions of GnuPG also required this flag to allow the
1391 generation of DSA larger than 1024 bit.
1393 @item --photo-viewer @code{string}
1394 @opindex photo-viewer
1395 This is the command line that should be run to view a photo ID. "%i"
1396 will be expanded to a filename containing the photo. "%I" does the
1397 same, except the file will not be deleted once the viewer exits.
1398 Other flags are "%k" for the key ID, "%K" for the long key ID, "%f"
1399 for the key fingerprint, "%t" for the extension of the image type
1400 (e.g. "jpg"), "%T" for the MIME type of the image (e.g. "image/jpeg"),
1401 "%v" for the single-character calculated validity of the image being
1402 viewed (e.g. "f"), "%V" for the calculated validity as a string (e.g.
1403 "full"), "%U" for a base32 encoded hash of the user ID,
1404 and "%%" for an actual percent sign. If neither %i or %I are present,
1405 then the photo will be supplied to the viewer on standard input.
1407 The default viewer is "xloadimage -fork -quiet -title 'KeyID 0x%k'
1408 STDIN". Note that if your image viewer program is not secure, then
1409 executing it from GnuPG does not make it secure.
1411 @item --exec-path @code{string}
1414 Sets a list of directories to search for photo viewers and keyserver
1415 helpers. If not provided, keyserver helpers use the compiled-in
1416 default directory, and photo viewers use the @code{PATH} environment
1418 Note, that on W32 system this value is ignored when searching for
1421 @item --keyring @code{file}
1423 Add @code{file} to the current list of keyrings. If @code{file} begins
1424 with a tilde and a slash, these are replaced by the $HOME directory. If
1425 the filename does not contain a slash, it is assumed to be in the GnuPG
1426 home directory ("~/.gnupg" if @option{--homedir} or $GNUPGHOME is not
1429 Note that this adds a keyring to the current list. If the intent is to
1430 use the specified keyring alone, use @option{--keyring} along with
1431 @option{--no-default-keyring}.
1433 If the option @option{--no-keyring} has been used no keyrings will
1437 @item --secret-keyring @code{file}
1438 @opindex secret-keyring
1439 This is an obsolete option and ignored. All secret keys are stored in
1440 the @file{private-keys-v1.d} directory below the GnuPG home directory.
1442 @item --primary-keyring @code{file}
1443 @opindex primary-keyring
1444 Designate @code{file} as the primary public keyring. This means that
1445 newly imported keys (via @option{--import} or keyserver
1446 @option{--recv-from}) will go to this keyring.
1448 @item --trustdb-name @code{file}
1449 @opindex trustdb-name
1450 Use @code{file} instead of the default trustdb. If @code{file} begins
1451 with a tilde and a slash, these are replaced by the $HOME directory. If
1452 the filename does not contain a slash, it is assumed to be in the GnuPG
1453 home directory (@file{~/.gnupg} if @option{--homedir} or $GNUPGHOME is
1456 @include opt-homedir.texi
1459 @item --display-charset @code{name}
1460 @opindex display-charset
1461 Set the name of the native character set. This is used to convert
1462 some informational strings like user IDs to the proper UTF-8 encoding.
1463 Note that this has nothing to do with the character set of data to be
1464 encrypted or signed; GnuPG does not recode user-supplied data. If
1465 this option is not used, the default character set is determined from
1466 the current locale. A verbosity level of 3 shows the chosen set.
1467 Valid values for @code{name} are:
1472 @opindex display-charset:iso-8859-1
1473 This is the Latin 1 set.
1476 @opindex display-charset:iso-8859-2
1480 @opindex display-charset:iso-8859-15
1481 This is currently an alias for
1485 @opindex display-charset:koi8-r
1486 The usual Russian set (RFC-1489).
1489 @opindex display-charset:utf-8
1490 Bypass all translations and assume
1491 that the OS uses native UTF-8 encoding.
1494 @item --utf8-strings
1495 @itemx --no-utf8-strings
1496 @opindex utf8-strings
1497 Assume that command line arguments are given as UTF-8 strings. The
1498 default (@option{--no-utf8-strings}) is to assume that arguments are
1499 encoded in the character set as specified by
1500 @option{--display-charset}. These options affect all following
1501 arguments. Both options may be used multiple times.
1503 @anchor{gpg-option --options}
1504 @item --options @code{file}
1506 Read options from @code{file} and do not try to read them from the
1507 default options file in the homedir (see @option{--homedir}). This
1508 option is ignored if used in an options file.
1512 Shortcut for @option{--options /dev/null}. This option is detected
1513 before an attempt to open an option file. Using this option will also
1514 prevent the creation of a @file{~/.gnupg} homedir.
1517 @itemx --compress-level @code{n}
1518 @itemx --bzip2-compress-level @code{n}
1519 @opindex compress-level
1520 @opindex bzip2-compress-level
1521 Set compression level to @code{n} for the ZIP and ZLIB compression
1522 algorithms. The default is to use the default compression level of zlib
1523 (normally 6). @option{--bzip2-compress-level} sets the compression level
1524 for the BZIP2 compression algorithm (defaulting to 6 as well). This is a
1525 different option from @option{--compress-level} since BZIP2 uses a
1526 significant amount of memory for each additional compression level.
1527 @option{-z} sets both. A value of 0 for @code{n} disables compression.
1529 @item --bzip2-decompress-lowmem
1530 @opindex bzip2-decompress-lowmem
1531 Use a different decompression method for BZIP2 compressed files. This
1532 alternate method uses a bit more than half the memory, but also runs
1533 at half the speed. This is useful under extreme low memory
1534 circumstances when the file was originally compressed at a high
1535 @option{--bzip2-compress-level}.
1538 @item --mangle-dos-filenames
1539 @itemx --no-mangle-dos-filenames
1540 @opindex mangle-dos-filenames
1541 @opindex no-mangle-dos-filenames
1542 Older version of Windows cannot handle filenames with more than one
1543 dot. @option{--mangle-dos-filenames} causes GnuPG to replace (rather
1544 than add to) the extension of an output filename to avoid this
1545 problem. This option is off by default and has no effect on non-Windows
1548 @item --ask-cert-level
1549 @itemx --no-ask-cert-level
1550 @opindex ask-cert-level
1551 When making a key signature, prompt for a certification level. If this
1552 option is not specified, the certification level used is set via
1553 @option{--default-cert-level}. See @option{--default-cert-level} for
1554 information on the specific levels and how they are
1555 used. @option{--no-ask-cert-level} disables this option. This option
1558 @item --default-cert-level @code{n}
1559 @opindex default-cert-level
1560 The default to use for the check level when signing a key.
1562 0 means you make no particular claim as to how carefully you verified
1565 1 means you believe the key is owned by the person who claims to own
1566 it but you could not, or did not verify the key at all. This is
1567 useful for a "persona" verification, where you sign the key of a
1570 2 means you did casual verification of the key. For example, this
1571 could mean that you verified the key fingerprint and checked the
1572 user ID on the key against a photo ID.
1574 3 means you did extensive verification of the key. For example, this
1575 could mean that you verified the key fingerprint with the owner of the
1576 key in person, and that you checked, by means of a hard to forge
1577 document with a photo ID (such as a passport) that the name of the key
1578 owner matches the name in the user ID on the key, and finally that you
1579 verified (by exchange of email) that the email address on the key
1580 belongs to the key owner.
1582 Note that the examples given above for levels 2 and 3 are just that:
1583 examples. In the end, it is up to you to decide just what "casual"
1584 and "extensive" mean to you.
1586 This option defaults to 0 (no particular claim).
1588 @item --min-cert-level
1589 @opindex min-cert-level
1590 When building the trust database, treat any signatures with a
1591 certification level below this as invalid. Defaults to 2, which
1592 disregards level 1 signatures. Note that level 0 "no particular
1593 claim" signatures are always accepted.
1595 @item --trusted-key @code{long key ID}
1596 @opindex trusted-key
1597 Assume that the specified key (which must be given
1598 as a full 8 byte key ID) is as trustworthy as one of
1599 your own secret keys. This option is useful if you
1600 don't want to keep your secret keys (or one of them)
1601 online but still want to be able to check the validity of a given
1602 recipient's or signator's key.
1604 @item --trust-model @code{pgp|classic|tofu|tofu+pgp|direct|always|auto}
1605 @opindex trust-model
1606 Set what trust model GnuPG should follow. The models are:
1611 @opindex trust-mode:pgp
1612 This is the Web of Trust combined with trust signatures as used in PGP
1613 5.x and later. This is the default trust model when creating a new
1617 @opindex trust-mode:classic
1618 This is the standard Web of Trust as introduced by PGP 2.
1621 @opindex trust-mode:tofu
1622 @anchor{trust-model-tofu}
1623 TOFU stands for Trust On First Use. In this trust model, the first
1624 time a key is seen, it is memorized. If later another key is seen
1625 with a user id with the same email address, a warning is displayed
1626 indicating that there is a conflict and that the key might be a
1627 forgery and an attempt at a man-in-the-middle attack.
1629 Because a potential attacker is able to control the email address
1630 and thereby circumvent the conflict detection algorithm by using an
1631 email address that is similar in appearance to a trusted email
1632 address, whenever a message is verified, statistics about the number
1633 of messages signed with the key are shown. In this way, a user can
1634 easily identify attacks using fake keys for regular correspondents.
1636 When compared with the Web of Trust, TOFU offers significantly
1637 weaker security guarantees. In particular, TOFU only helps ensure
1638 consistency (that is, that the binding between a key and email
1639 address doesn't change). A major advantage of TOFU is that it
1640 requires little maintenance to use correctly. To use the web of
1641 trust properly, you need to actively sign keys and mark users as
1642 trusted introducers. This is a time-consuming process and anecdotal
1643 evidence suggests that even security-conscious users rarely take the
1644 time to do this thoroughly and instead rely on an ad-hoc TOFU
1647 In the TOFU model, policies are associated with bindings between
1648 keys and email addresses (which are extracted from user ids and
1649 normalized). There are five policies, which can be set manually
1650 using the @option{--tofu-policy} option. The default policy can be
1651 set using the @option{--tofu-default-policy} option.
1653 The TOFU policies are: @code{auto}, @code{good}, @code{unknown},
1654 @code{bad} and @code{ask}. The @code{auto} policy is used by
1655 default (unless overridden by @option{--tofu-default-policy}) and
1656 marks a binding as marginally trusted. The @code{good},
1657 @code{unknown} and @code{bad} policies mark a binding as fully
1658 trusted, as having unknown trust or as having trust never,
1659 respectively. The @code{unknown} policy is useful for just using
1660 TOFU to detect conflicts, but to never assign positive trust to a
1661 binding. The final policy, @code{ask} prompts the user to indicate
1662 the binding's trust. If batch mode is enabled (or input is
1663 inappropriate in the context), then the user is not prompted and the
1664 @code{undefined} trust level is returned.
1667 @opindex trust-mode:tofu+pgp
1668 This trust model combines TOFU with the Web of Trust. This is done
1669 by computing the trust level for each model and then taking the
1670 maximum trust level where the trust levels are ordered as follows:
1671 @code{unknown < undefined < marginal < fully < ultimate < expired <
1674 By setting @option{--tofu-default-policy=unknown}, this model can be
1675 used to implement the web of trust with TOFU's conflict detection
1676 algorithm, but without its assignment of positive trust values,
1677 which some security-conscious users don't like.
1680 @opindex trust-mode:direct
1681 Key validity is set directly by the user and not calculated via the
1685 @opindex trust-mode:always
1686 Skip key validation and assume that used keys are always fully
1687 valid. You generally won't use this unless you are using some
1688 external validation scheme. This option also suppresses the
1689 "[uncertain]" tag printed with signature checks when there is no
1690 evidence that the user ID is bound to the key. Note that this
1691 trust model still does not allow the use of expired, revoked, or
1695 @opindex trust-mode:auto
1696 Select the trust model depending on whatever the internal trust
1697 database says. This is the default model if such a database already
1701 @item --auto-key-locate @code{parameters}
1702 @itemx --no-auto-key-locate
1703 @opindex auto-key-locate
1704 GnuPG can automatically locate and retrieve keys as needed using this
1705 option. This happens when encrypting to an email address (in the
1706 "user@@example.com" form), and there are no user@@example.com keys on
1707 the local keyring. This option takes any number of the following
1708 mechanisms, in the order they are to be tried:
1713 Locate a key using DNS CERT, as specified in RFC-4398.
1716 Locate a key using DNS PKA.
1719 Locate a key using DANE, as specified
1720 in draft-ietf-dane-openpgpkey-05.txt.
1723 Locate a key using the Web Key Directory protocol.
1724 This is an experimental method and semantics may change.
1727 Using DNS Service Discovery, check the domain in question for any LDAP
1728 keyservers to use. If this fails, attempt to locate the key using the
1729 PGP Universal method of checking @samp{ldap://keys.(thedomain)}.
1732 Locate a key using whatever keyserver is defined using the
1733 @option{--keyserver} option.
1736 In addition, a keyserver URL as used in the @option{--keyserver} option
1737 may be used here to query that particular keyserver.
1740 Locate the key using the local keyrings. This mechanism allows the user to
1741 select the order a local key lookup is done. Thus using
1742 @samp{--auto-key-locate local} is identical to
1743 @option{--no-auto-key-locate}.
1746 This flag disables the standard local key lookup, done before any of the
1747 mechanisms defined by the @option{--auto-key-locate} are tried. The
1748 position of this mechanism in the list does not matter. It is not
1749 required if @code{local} is also used.
1752 Clear all defined mechanisms. This is useful to override
1753 mechanisms given in a config file.
1757 @item --auto-key-retrieve
1758 @itemx --no-auto-key-retrieve
1759 @opindex auto-key-retrieve
1760 @opindex no-auto-key-retrieve
1761 This option enables the automatic retrieving of keys from a keyserver
1762 when verifying signatures made by keys that are not on the local
1765 If the method "wkd" is included in the list of methods given to
1766 @option{auto-key-locate}, the Signer's User ID is part of the
1767 signature, and the option @option{--disable-signer-uid} is not used,
1768 the "wkd" method may also be used to retrieve a key.
1770 Note that this option makes a "web bug" like behavior possible.
1771 Keyserver or Web Key Directory operators can see which keys you
1772 request, so by sending you a message signed by a brand new key (which
1773 you naturally will not have on your local keyring), the operator can
1774 tell both your IP address and the time when you verified the
1777 @item --keyid-format @code{none|short|0xshort|long|0xlong}
1778 @opindex keyid-format
1779 Select how to display key IDs. "none" does not show the key ID at all
1780 but shows the fingerprint in a separate line. "short" is the
1781 traditional 8-character key ID. "long" is the more accurate (but less
1782 convenient) 16-character key ID. Add an "0x" to either to include an
1783 "0x" at the beginning of the key ID, as in 0x99242560. Note that this
1784 option is ignored if the option @option{--with-colons} is used.
1786 @item --keyserver @code{name}
1788 This option is deprecated - please use the @option{--keyserver} in
1789 @file{dirmngr.conf} instead.
1791 Use @code{name} as your keyserver. This is the server that
1792 @option{--receive-keys}, @option{--send-keys}, and @option{--search-keys}
1793 will communicate with to receive keys from, send keys to, and search for
1794 keys on. The format of the @code{name} is a URI:
1795 `scheme:[//]keyservername[:port]' The scheme is the type of keyserver:
1796 "hkp" for the HTTP (or compatible) keyservers, "ldap" for the LDAP
1797 keyservers, or "mailto" for the Graff email keyserver. Note that your
1798 particular installation of GnuPG may have other keyserver types
1799 available as well. Keyserver schemes are case-insensitive. After the
1800 keyserver name, optional keyserver configuration options may be
1801 provided. These are the same as the global @option{--keyserver-options}
1802 from below, but apply only to this particular keyserver.
1804 Most keyservers synchronize with each other, so there is generally no
1805 need to send keys to more than one server. The keyserver
1806 @code{hkp://keys.gnupg.net} uses round robin DNS to give a different
1807 keyserver each time you use it.
1809 @item --keyserver-options @code{name=value}
1810 @opindex keyserver-options
1811 This is a space or comma delimited string that gives options for the
1812 keyserver. Options can be prefixed with a `no-' to give the opposite
1813 meaning. Valid import-options or export-options may be used here as
1814 well to apply to importing (@option{--recv-key}) or exporting
1815 (@option{--send-key}) a key from a keyserver. While not all options
1816 are available for all keyserver types, some common options are:
1820 @item include-revoked
1821 When searching for a key with @option{--search-keys}, include keys that
1822 are marked on the keyserver as revoked. Note that not all keyservers
1823 differentiate between revoked and unrevoked keys, and for such
1824 keyservers this option is meaningless. Note also that most keyservers do
1825 not have cryptographic verification of key revocations, and so turning
1826 this option off may result in skipping keys that are incorrectly marked
1829 @item include-disabled
1830 When searching for a key with @option{--search-keys}, include keys that
1831 are marked on the keyserver as disabled. Note that this option is not
1832 used with HKP keyservers.
1834 @item auto-key-retrieve
1835 This is the same as the option @option{auto-key-retrieve}.
1837 @item honor-keyserver-url
1838 When using @option{--refresh-keys}, if the key in question has a preferred
1839 keyserver URL, then use that preferred keyserver to refresh the key
1840 from. In addition, if auto-key-retrieve is set, and the signature
1841 being verified has a preferred keyserver URL, then use that preferred
1842 keyserver to fetch the key from. Note that this option introduces a
1843 "web bug": The creator of the key can see when the keys is
1844 refreshed. Thus this option is not enabled by default.
1846 @item honor-pka-record
1847 If @option{--auto-key-retrieve} is used, and the signature being
1848 verified has a PKA record, then use the PKA information to fetch
1849 the key. Defaults to "yes".
1851 @item include-subkeys
1852 When receiving a key, include subkeys as potential targets. Note that
1853 this option is not used with HKP keyservers, as they do not support
1854 retrieving keys by subkey id.
1857 Tell the keyserver helper program how long (in seconds) to try and
1858 perform a keyserver action before giving up. Note that performing
1859 multiple actions at the same time uses this timeout value per action.
1860 For example, when retrieving multiple keys via @option{--receive-keys}, the
1861 timeout applies separately to each key retrieval, and not to the
1862 @option{--receive-keys} command as a whole. Defaults to 30 seconds.
1864 @item http-proxy=@code{value}
1865 This option is deprecated.
1866 Set the proxy to use for HTTP and HKP keyservers.
1867 This overrides any proxy defined in @file{dirmngr.conf}.
1870 This option has no more function since GnuPG 2.1. Use the
1871 @code{dirmngr} configuration options instead.
1874 This option has no more function since GnuPG 2.1. Use the
1875 @code{dirmngr} configuration options instead.
1878 This option has no more function since GnuPG 2.1. Use the
1879 @code{dirmngr} configuration options instead.
1882 This option has no more function since GnuPG 2.1. Use the
1883 @code{dirmngr} configuration options instead.
1887 @item --completes-needed @code{n}
1888 @opindex compliant-needed
1889 Number of completely trusted users to introduce a new
1890 key signer (defaults to 1).
1892 @item --marginals-needed @code{n}
1893 @opindex marginals-needed
1894 Number of marginally trusted users to introduce a new
1895 key signer (defaults to 3)
1897 @item --tofu-default-policy @code{auto|good|unknown|bad|ask}
1898 @opindex tofu-default-policy
1899 The default TOFU policy (defaults to @code{auto}). For more
1900 information about the meaning of this option, @pxref{trust-model-tofu}.
1902 @item --max-cert-depth @code{n}
1903 @opindex max-cert-depth
1904 Maximum depth of a certification chain (default is 5).
1906 @item --no-sig-cache
1907 @opindex no-sig-cache
1908 Do not cache the verification status of key signatures.
1909 Caching gives a much better performance in key listings. However, if
1910 you suspect that your public keyring is not safe against write
1911 modifications, you can use this option to disable the caching. It
1912 probably does not make sense to disable it because all kind of damage
1913 can be done if someone else has write access to your public keyring.
1915 @item --auto-check-trustdb
1916 @itemx --no-auto-check-trustdb
1917 @opindex auto-check-trustdb
1918 If GnuPG feels that its information about the Web of Trust has to be
1919 updated, it automatically runs the @option{--check-trustdb} command
1920 internally. This may be a time consuming
1921 process. @option{--no-auto-check-trustdb} disables this option.
1924 @itemx --no-use-agent
1926 This is dummy option. @command{@gpgname} always requires the agent.
1928 @item --gpg-agent-info
1929 @opindex gpg-agent-info
1930 This is dummy option. It has no effect when used with @command{@gpgname}.
1933 @item --agent-program @var{file}
1934 @opindex agent-program
1935 Specify an agent program to be used for secret key operations. The
1936 default value is determined by running @command{gpgconf} with the
1937 option @option{--list-dirs}. Note that the pipe symbol (@code{|}) is
1938 used for a regression test suite hack and may thus not be used in the
1941 @item --dirmngr-program @var{file}
1942 @opindex dirmngr-program
1943 Specify a dirmngr program to be used for keyserver access. The
1944 default value is @file{@value{BINDIR}/dirmngr}.
1946 @item --no-autostart
1947 @opindex no-autostart
1948 Do not start the gpg-agent or the dirmngr if it has not yet been
1949 started and its service is required. This option is mostly useful on
1950 machines where the connection to gpg-agent has been redirected to
1951 another machines. If dirmngr is required on the remote machine, it
1952 may be started manually using @command{gpgconf --launch dirmngr}.
1956 Lock the databases the first time a lock is requested
1957 and do not release the lock until the process
1960 @item --lock-multiple
1961 @opindex lock-multiple
1962 Release the locks every time a lock is no longer
1963 needed. Use this to override a previous @option{--lock-once}
1968 Disable locking entirely. This option should be used only in very
1969 special environments, where it can be assured that only one process
1970 is accessing those files. A bootable floppy with a stand-alone
1971 encryption system will probably use this. Improper usage of this
1972 option may lead to data and key corruption.
1974 @item --exit-on-status-write-error
1975 @opindex exit-on-status-write-error
1976 This option will cause write errors on the status FD to immediately
1977 terminate the process. That should in fact be the default but it never
1978 worked this way and thus we need an option to enable this, so that the
1979 change won't break applications which close their end of a status fd
1980 connected pipe too early. Using this option along with
1981 @option{--enable-progress-filter} may be used to cleanly cancel long
1982 running gpg operations.
1984 @item --limit-card-insert-tries @code{n}
1985 @opindex limit-card-insert-tries
1986 With @code{n} greater than 0 the number of prompts asking to insert a
1987 smartcard gets limited to N-1. Thus with a value of 1 gpg won't at
1988 all ask to insert a card if none has been inserted at startup. This
1989 option is useful in the configuration file in case an application does
1990 not know about the smartcard support and waits ad infinitum for an
1993 @item --no-random-seed-file
1994 @opindex no-random-seed-file
1995 GnuPG uses a file to store its internal random pool over invocations.
1996 This makes random generation faster; however sometimes write operations
1997 are not desired. This option can be used to achieve that with the cost of
1998 slower random generation.
2001 @opindex no-greeting
2002 Suppress the initial copyright message.
2004 @item --no-secmem-warning
2005 @opindex no-secmem-warning
2006 Suppress the warning about "using insecure memory".
2008 @item --no-permission-warning
2009 @opindex permission-warning
2010 Suppress the warning about unsafe file and home directory (@option{--homedir})
2011 permissions. Note that the permission checks that GnuPG performs are
2012 not intended to be authoritative, but rather they simply warn about
2013 certain common permission problems. Do not assume that the lack of a
2014 warning means that your system is secure.
2016 Note that the warning for unsafe @option{--homedir} permissions cannot be
2017 suppressed in the gpg.conf file, as this would allow an attacker to
2018 place an unsafe gpg.conf file in place, and use this file to suppress
2019 warnings about itself. The @option{--homedir} permissions warning may only be
2020 suppressed on the command line.
2022 @item --no-mdc-warning
2023 @opindex no-mdc-warning
2024 Suppress the warning about missing MDC integrity protection.
2026 @item --require-secmem
2027 @itemx --no-require-secmem
2028 @opindex require-secmem
2029 Refuse to run if GnuPG cannot get secure memory. Defaults to no
2030 (i.e. run, but give a warning).
2033 @item --require-cross-certification
2034 @itemx --no-require-cross-certification
2035 @opindex require-cross-certification
2036 When verifying a signature made from a subkey, ensure that the cross
2037 certification "back signature" on the subkey is present and valid. This
2038 protects against a subtle attack against subkeys that can sign.
2039 Defaults to @option{--require-cross-certification} for
2045 Allow the user to do certain nonsensical or "silly" things like
2046 signing an expired or revoked key, or certain potentially incompatible
2047 things like generating unusual key types. This also disables certain
2048 warning messages about potentially incompatible actions. As the name
2049 implies, this option is for experts only. If you don't fully
2050 understand the implications of what it allows you to do, leave this
2051 off. @option{--no-expert} disables this option.
2056 @c *******************************************
2057 @c ******** KEY RELATED OPTIONS ************
2058 @c *******************************************
2059 @node GPG Key related Options
2060 @subsection Key related options
2064 @item --recipient @var{name}
2067 Encrypt for user id @var{name}. If this option or
2068 @option{--hidden-recipient} is not specified, GnuPG asks for the user-id
2069 unless @option{--default-recipient} is given.
2071 @item --hidden-recipient @var{name}
2073 @opindex hidden-recipient
2074 Encrypt for user ID @var{name}, but hide the key ID of this user's
2075 key. This option helps to hide the receiver of the message and is a
2076 limited countermeasure against traffic analysis. If this option or
2077 @option{--recipient} is not specified, GnuPG asks for the user ID unless
2078 @option{--default-recipient} is given.
2080 @item --recipient-file @var{file}
2082 @opindex recipient-file
2083 This option is similar to @option{--recipient} except that it
2084 encrypts to a key stored in the given file. @var{file} must be the
2085 name of a file containing exactly one key. @command{@gpgname} assumes that
2086 the key in this file is fully valid.
2088 @item --hidden-recipient-file @var{file}
2090 @opindex hidden-recipient-file
2091 This option is similar to @option{--hidden-recipient} except that it
2092 encrypts to a key stored in the given file. @var{file} must be the
2093 name of a file containing exactly one key. @command{@gpgname} assumes that
2094 the key in this file is fully valid.
2096 @item --encrypt-to @code{name}
2098 Same as @option{--recipient} but this one is intended for use in the
2099 options file and may be used with your own user-id as an
2100 "encrypt-to-self". These keys are only used when there are other
2101 recipients given either by use of @option{--recipient} or by the asked
2102 user id. No trust checking is performed for these user ids and even
2103 disabled keys can be used.
2105 @item --hidden-encrypt-to @code{name}
2106 @opindex hidden-encrypt-to
2107 Same as @option{--hidden-recipient} but this one is intended for use in the
2108 options file and may be used with your own user-id as a hidden
2109 "encrypt-to-self". These keys are only used when there are other
2110 recipients given either by use of @option{--recipient} or by the asked user id.
2111 No trust checking is performed for these user ids and even disabled
2114 @item --no-encrypt-to
2115 @opindex no-encrypt-to
2116 Disable the use of all @option{--encrypt-to} and
2117 @option{--hidden-encrypt-to} keys.
2119 @item --group @code{name=value}
2121 Sets up a named group, which is similar to aliases in email programs.
2122 Any time the group name is a recipient (@option{-r} or
2123 @option{--recipient}), it will be expanded to the values
2124 specified. Multiple groups with the same name are automatically merged
2125 into a single group.
2127 The values are @code{key IDs} or fingerprints, but any key description
2128 is accepted. Note that a value with spaces in it will be treated as
2129 two different values. Note also there is only one level of expansion
2130 --- you cannot make an group that points to another group. When used
2131 from the command line, it may be necessary to quote the argument to
2132 this option to prevent the shell from treating it as multiple
2135 @item --ungroup @code{name}
2137 Remove a given entry from the @option{--group} list.
2141 Remove all entries from the @option{--group} list.
2143 @item --local-user @var{name}
2146 Use @var{name} as the key to sign with. Note that this option overrides
2147 @option{--default-key}.
2149 @item --sender @var{mbox}
2151 This option has two purposes. @var{mbox} must either be a complete
2152 user id with a proper mail address or just a mail address. When
2153 creating a signature this option tells gpg the user id of a key used
2154 to make a signature if the key was not directly specified by a user
2155 id. When verifying a signature the @var{mbox} is used to restrict the
2156 information printed by the TOFU code to matching user ids.
2158 @item --try-secret-key @var{name}
2159 @opindex try-secret-key
2160 For hidden recipients GPG needs to know the keys to use for trial
2161 decryption. The key set with @option{--default-key} is always tried
2162 first, but this is often not sufficient. This option allows setting more
2163 keys to be used for trial decryption. Although any valid user-id
2164 specification may be used for @var{name} it makes sense to use at least
2165 the long keyid to avoid ambiguities. Note that gpg-agent might pop up a
2166 pinentry for a lot keys to do the trial decryption. If you want to stop
2167 all further trial decryption you may use close-window button instead of
2170 @item --try-all-secrets
2171 @opindex try-all-secrets
2172 Don't look at the key ID as stored in the message but try all secret
2173 keys in turn to find the right decryption key. This option forces the
2174 behaviour as used by anonymous recipients (created by using
2175 @option{--throw-keyids} or @option{--hidden-recipient}) and might come
2176 handy in case where an encrypted message contains a bogus key ID.
2178 @item --skip-hidden-recipients
2179 @itemx --no-skip-hidden-recipients
2180 @opindex skip-hidden-recipients
2181 @opindex no-skip-hidden-recipients
2182 During decryption skip all anonymous recipients. This option helps in
2183 the case that people use the hidden recipients feature to hide there
2184 own encrypt-to key from others. If oneself has many secret keys this
2185 may lead to a major annoyance because all keys are tried in turn to
2186 decrypt something which was not really intended for it. The drawback
2187 of this option is that it is currently not possible to decrypt a
2188 message which includes real anonymous recipients.
2193 @c *******************************************
2194 @c ******** INPUT AND OUTPUT ***************
2195 @c *******************************************
2196 @node GPG Input and Output
2197 @subsection Input and Output
2204 Create ASCII armored output. The default is to create the binary
2209 Assume the input data is not in ASCII armored format.
2211 @item --output @var{file}
2212 @itemx -o @var{file}
2214 Write output to @var{file}. To write to stdout use @code{-} as the
2217 @item --max-output @code{n}
2219 This option sets a limit on the number of bytes that will be generated
2220 when processing a file. Since OpenPGP supports various levels of
2221 compression, it is possible that the plaintext of a given message may be
2222 significantly larger than the original OpenPGP message. While GnuPG
2223 works properly with such messages, there is often a desire to set a
2224 maximum file size that will be generated before processing is forced to
2225 stop by the OS limits. Defaults to 0, which means "no limit".
2227 @item --input-size-hint @var{n}
2228 @opindex input-size-hint
2229 This option can be used to tell GPG the size of the input data in
2230 bytes. @var{n} must be a positive base-10 number. This option is
2231 only useful if the input is not taken from a file. GPG may use this
2232 hint to optimize its buffer allocation strategy. It is also used by
2233 the @option{--status-fd} line ``PROGRESS'' to provide a value for
2234 ``total'' if that is not available by other means.
2236 @item --import-options @code{parameters}
2237 @opindex import-options
2238 This is a space or comma delimited string that gives options for
2239 importing keys. Options can be prepended with a `no-' to give the
2240 opposite meaning. The options are:
2244 @item import-local-sigs
2245 Allow importing key signatures marked as "local". This is not
2246 generally useful unless a shared keyring scheme is being used.
2249 @item keep-ownertrust
2250 Normally possible still existing ownertrust values of a key are
2251 cleared if a key is imported. This is in general desirable so that
2252 a formerly deleted key does not automatically gain an ownertrust
2253 values merely due to import. On the other hand it is sometimes
2254 necessary to re-import a trusted set of keys again but keeping
2255 already assigned ownertrust values. This can be achieved by using
2258 @item repair-pks-subkey-bug
2259 During import, attempt to repair the damage caused by the PKS keyserver
2260 bug (pre version 0.9.6) that mangles keys with multiple subkeys. Note
2261 that this cannot completely repair the damaged key as some crucial data
2262 is removed by the keyserver, but it does at least give you back one
2263 subkey. Defaults to no for regular @option{--import} and to yes for
2264 keyserver @option{--receive-keys}.
2267 Show a listing of the key as imported right before it is stored.
2268 This can be combined with the option @option{--dry-run} to only look
2272 Run the entire import code but instead of storing the key to the
2273 local keyring write it to the output. The export options
2274 @option{export-pka} and @option{export-dane} affect the output. This
2275 option can be used to remove all invalid parts from a key without the
2279 During import, allow key updates to existing keys, but do not allow
2280 any new keys to be imported. Defaults to no.
2283 After import, compact (remove all signatures except the
2284 self-signature) any user IDs from the new key that are not usable.
2285 Then, remove any signatures from the new key that are not usable.
2286 This includes signatures that were issued by keys that are not present
2287 on the keyring. This option is the same as running the @option{--edit-key}
2288 command "clean" after import. Defaults to no.
2290 @item import-minimal
2291 Import the smallest key possible. This removes all signatures except
2292 the most recent self-signature on each user ID. This option is the
2293 same as running the @option{--edit-key} command "minimize" after import.
2297 @itemx import-restore
2298 Import in key restore mode. This imports all data which is usually
2299 skipped during import; including all GnuPG specific data. All other
2300 contradicting options are overridden.
2303 @item --import-filter @code{@var{name}=@var{expr}}
2304 @itemx --export-filter @code{@var{name}=@var{expr}}
2305 @opindex import-filter
2306 @opindex export-filter
2307 These options define an import/export filter which are applied to the
2308 imported/exported keyblock right before it will be stored/written.
2309 @var{name} defines the type of filter to use, @var{expr} the
2310 expression to evaluate. The option can be used several times which
2311 then appends more expression to the same @var{name}.
2314 The available filter types are:
2319 This filter will keep a user id packet and its dependent packets in
2320 the keyblock if the expression evaluates to true.
2323 This filter drops the selected subkeys.
2324 Currently only implemented for --export-filter.
2327 This filter drops the selected key signatures on user ids.
2328 Self-signatures are not considered.
2329 Currently only implemented for --import-filter.
2333 For the syntax of the expression see the chapter "FILTER EXPRESSIONS".
2334 The property names for the expressions depend on the actual filter
2335 type and are indicated in the following table.
2337 The available properties are:
2342 A string with the user id. (keep-uid)
2345 The addr-spec part of a user id with mailbox or the empty string.
2349 A number with the public key algorithm of a key or subkey packet.
2353 @itemx key_created_d
2354 The first is the timestamp a public key or subkey packet was
2355 created. The second is the same but given as an ISO string,
2356 e.g. "2016-08-17". (drop-subkey)
2359 Boolean indicating whether the user id is the primary one. (keep-uid)
2362 Boolean indicating whether a key or subkey is a secret one.
2366 @itemx sig_created_d
2367 The first is the timestamp a signature packet was created. The
2368 second is the same but given as an ISO string,
2369 e.g. "2016-08-17". (drop-sig)
2372 A number with the public key algorithm of a signature packet. (drop-sig)
2374 @item sig_digest_algo
2375 A number with the digest algorithm of a signature packet. (drop-sig)
2379 @item --export-options @code{parameters}
2380 @opindex export-options
2381 This is a space or comma delimited string that gives options for
2382 exporting keys. Options can be prepended with a `no-' to give the
2383 opposite meaning. The options are:
2387 @item export-local-sigs
2388 Allow exporting key signatures marked as "local". This is not
2389 generally useful unless a shared keyring scheme is being used.
2392 @item export-attributes
2393 Include attribute user IDs (photo IDs) while exporting. This is
2394 useful to export keys if they are going to be used by an OpenPGP
2395 program that does not accept attribute user IDs. Defaults to yes.
2397 @item export-sensitive-revkeys
2398 Include designated revoker information that was marked as
2399 "sensitive". Defaults to no.
2401 @c Since GnuPG 2.1 gpg-agent manages the secret key and thus the
2402 @c export-reset-subkey-passwd hack is not anymore justified. Such use
2403 @c cases may be implemented using a specialized secret key export
2405 @c @item export-reset-subkey-passwd
2406 @c When using the @option{--export-secret-subkeys} command, this option resets
2407 @c the passphrases for all exported subkeys to empty. This is useful
2408 @c when the exported subkey is to be used on an unattended machine where
2409 @c a passphrase doesn't necessarily make sense. Defaults to no.
2412 @itemx export-backup
2413 Export for use as a backup. The exported data includes all data
2414 which is needed to restore the key or keys later with GnuPG. The
2415 format is basically the OpenPGP format but enhanced with GnuPG
2416 specific data. All other contradicting options are overridden.
2419 Compact (remove all signatures from) user IDs on the key being
2420 exported if the user IDs are not usable. Also, do not export any
2421 signatures that are not usable. This includes signatures that were
2422 issued by keys that are not present on the keyring. This option is
2423 the same as running the @option{--edit-key} command "clean" before export
2424 except that the local copy of the key is not modified. Defaults to
2427 @item export-minimal
2428 Export the smallest key possible. This removes all signatures except the
2429 most recent self-signature on each user ID. This option is the same as
2430 running the @option{--edit-key} command "minimize" before export except
2431 that the local copy of the key is not modified. Defaults to no.
2434 Instead of outputting the key material output PKA records suitable
2435 to put into DNS zone files. An ORIGIN line is printed before each
2436 record to allow diverting the records to the corresponding zone file.
2439 Instead of outputting the key material output OpenPGP DANE records
2440 suitable to put into DNS zone files. An ORIGIN line is printed before
2441 each record to allow diverting the records to the corresponding zone
2447 @opindex with-colons
2448 Print key listings delimited by colons. Note that the output will be
2449 encoded in UTF-8 regardless of any @option{--display-charset} setting. This
2450 format is useful when GnuPG is called from scripts and other programs
2451 as it is easily machine parsed. The details of this format are
2452 documented in the file @file{doc/DETAILS}, which is included in the GnuPG
2453 source distribution.
2455 @item --fixed-list-mode
2456 @opindex fixed-list-mode
2457 Do not merge primary user ID and primary key in @option{--with-colon}
2458 listing mode and print all timestamps as seconds since 1970-01-01.
2459 Since GnuPG 2.0.10, this mode is always used and thus this option is
2460 obsolete; it does not harm to use it though.
2462 @item --legacy-list-mode
2463 @opindex legacy-list-mode
2464 Revert to the pre-2.1 public key list mode. This only affects the
2465 human readable output and not the machine interface
2466 (i.e. @code{--with-colons}). Note that the legacy format does not
2467 convey suitable information for elliptic curves.
2469 @item --with-fingerprint
2470 @opindex with-fingerprint
2471 Same as the command @option{--fingerprint} but changes only the format
2472 of the output and may be used together with another command.
2474 @item --with-subkey-fingerprint
2475 @opindex with-subkey-fingerprint
2476 If a fingerprint is printed for the primary key, this option forces
2477 printing of the fingerprint for all subkeys. This could also be
2478 achieved by using the @option{--with-fingerprint} twice but by using
2479 this option along with keyid-format "none" a compact fingerprint is
2482 @item --with-icao-spelling
2483 @opindex with-icao-spelling
2484 Print the ICAO spelling of the fingerprint in addition to the hex digits.
2486 @item --with-keygrip
2487 @opindex with-keygrip
2488 Include the keygrip in the key listings. In @code{--with-colons} mode
2489 this is implicitly enable for secret keys.
2491 @item --with-wkd-hash
2492 @opindex with-wkd-hash
2493 Print a Web Key Directory identifier along with each user ID in key
2494 listings. This is an experimental feature and semantics may change.
2497 @opindex with-secret
2498 Include info about the presence of a secret key in public key listings
2499 done with @code{--with-colons}.
2503 @c *******************************************
2504 @c ******** OPENPGP OPTIONS ****************
2505 @c *******************************************
2506 @node OpenPGP Options
2507 @subsection OpenPGP protocol specific options
2511 @item -t, --textmode
2512 @itemx --no-textmode
2514 Treat input files as text and store them in the OpenPGP canonical text
2515 form with standard "CRLF" line endings. This also sets the necessary
2516 flags to inform the recipient that the encrypted or signed data is text
2517 and may need its line endings converted back to whatever the local
2518 system uses. This option is useful when communicating between two
2519 platforms that have different line ending conventions (UNIX-like to Mac,
2520 Mac to Windows, etc). @option{--no-textmode} disables this option, and
2523 @item --force-v3-sigs
2524 @itemx --no-force-v3-sigs
2525 @item --force-v4-certs
2526 @itemx --no-force-v4-certs
2527 These options are obsolete and have no effect since GnuPG 2.1.
2531 Force the use of encryption with a modification detection code. This
2532 is always used with the newer ciphers (those with a blocksize greater
2533 than 64 bits), or if all of the recipient keys indicate MDC support in
2534 their feature flags.
2537 @opindex disable-mdc
2538 Disable the use of the modification detection code. Note that by
2539 using this option, the encrypted message becomes vulnerable to a
2540 message modification attack.
2542 @item --disable-signer-uid
2543 @opindex disable-signer-uid
2544 By default the user ID of the signing key is embedded in the data
2545 signature. As of now this is only done if the signing key has been
2546 specified with @option{local-user} using a mail address. This
2547 information can be helpful for verifier to locate the key; see
2548 option @option{--auto-key-retrieve}.
2550 @item --personal-cipher-preferences @code{string}
2551 @opindex personal-cipher-preferences
2552 Set the list of personal cipher preferences to @code{string}. Use
2553 @command{@gpgname --version} to get a list of available algorithms,
2554 and use @code{none} to set no preference at all. This allows the user
2555 to safely override the algorithm chosen by the recipient key
2556 preferences, as GPG will only select an algorithm that is usable by
2557 all recipients. The most highly ranked cipher in this list is also
2558 used for the @option{--symmetric} encryption command.
2560 @item --personal-digest-preferences @code{string}
2561 @opindex personal-digest-preferences
2562 Set the list of personal digest preferences to @code{string}. Use
2563 @command{@gpgname --version} to get a list of available algorithms,
2564 and use @code{none} to set no preference at all. This allows the user
2565 to safely override the algorithm chosen by the recipient key
2566 preferences, as GPG will only select an algorithm that is usable by
2567 all recipients. The most highly ranked digest algorithm in this list
2568 is also used when signing without encryption
2569 (e.g. @option{--clear-sign} or @option{--sign}).
2571 @item --personal-compress-preferences @code{string}
2572 @opindex personal-compress-preferences
2573 Set the list of personal compression preferences to @code{string}.
2574 Use @command{@gpgname --version} to get a list of available
2575 algorithms, and use @code{none} to set no preference at all. This
2576 allows the user to safely override the algorithm chosen by the
2577 recipient key preferences, as GPG will only select an algorithm that
2578 is usable by all recipients. The most highly ranked compression
2579 algorithm in this list is also used when there are no recipient keys
2580 to consider (e.g. @option{--symmetric}).
2582 @item --s2k-cipher-algo @code{name}
2583 @opindex s2k-cipher-algo
2584 Use @code{name} as the cipher algorithm for symmetric encryption with
2585 a passphrase if @option{--personal-cipher-preferences} and
2586 @option{--cipher-algo} are not given. The default is @value{GPGSYMENCALGO}.
2588 @item --s2k-digest-algo @code{name}
2589 @opindex s2k-digest-algo
2590 Use @code{name} as the digest algorithm used to mangle the passphrases
2591 for symmetric encryption. The default is SHA-1.
2593 @item --s2k-mode @code{n}
2595 Selects how passphrases for symmetric encryption are mangled. If
2596 @code{n} is 0 a plain passphrase (which is in general not recommended)
2597 will be used, a 1 adds a salt (which should not be used) to the
2598 passphrase and a 3 (the default) iterates the whole process a number
2599 of times (see @option{--s2k-count}).
2601 @item --s2k-count @code{n}
2603 Specify how many times the passphrases mangling for symmetric
2604 encryption is repeated. This value may range between 1024 and
2605 65011712 inclusive. The default is inquired from gpg-agent. Note
2606 that not all values in the 1024-65011712 range are legal and if an
2607 illegal value is selected, GnuPG will round up to the nearest legal
2608 value. This option is only meaningful if @option{--s2k-mode} is set
2609 to the default of 3.
2614 @c ***************************
2615 @c ******* Compliance ********
2616 @c ***************************
2617 @node Compliance Options
2618 @subsection Compliance options
2620 These options control what GnuPG is compliant to. Only one of these
2621 options may be active at a time. Note that the default setting of
2622 this is nearly always the correct one. See the INTEROPERABILITY WITH
2623 OTHER OPENPGP PROGRAMS section below before using one of these
2630 Use standard GnuPG behavior. This is essentially OpenPGP behavior
2631 (see @option{--openpgp}), but with some additional workarounds for common
2632 compatibility problems in different versions of PGP. This is the
2633 default option, so it is not generally needed, but it may be useful to
2634 override a different compliance option in the gpg.conf file.
2638 Reset all packet, cipher and digest options to strict OpenPGP
2639 behavior. Use this option to reset all previous options like
2640 @option{--s2k-*}, @option{--cipher-algo}, @option{--digest-algo} and
2641 @option{--compress-algo} to OpenPGP compliant values. All PGP
2642 workarounds are disabled.
2646 Reset all packet, cipher and digest options to strict RFC-4880
2647 behavior. Note that this is currently the same thing as
2652 Enable experimental features from proposed updates to RFC-4880. This
2653 option can be used in addition to the other compliance options.
2654 Warning: The behavior may change with any GnuPG release and created
2655 keys or data may not be usable with future GnuPG versions.
2659 Reset all packet, cipher and digest options to strict RFC-2440
2664 Set up all options to be as PGP 6 compliant as possible. This
2665 restricts you to the ciphers IDEA (if the IDEA plugin is installed),
2666 3DES, and CAST5, the hashes MD5, SHA1 and RIPEMD160, and the
2667 compression algorithms none and ZIP. This also disables
2668 @option{--throw-keyids}, and making signatures with signing subkeys as PGP 6
2669 does not understand signatures made by signing subkeys.
2671 This option implies @option{--disable-mdc --escape-from-lines}.
2675 Set up all options to be as PGP 7 compliant as possible. This is
2676 identical to @option{--pgp6} except that MDCs are not disabled, and the
2677 list of allowable ciphers is expanded to add AES128, AES192, AES256, and
2682 Set up all options to be as PGP 8 compliant as possible. PGP 8 is a lot
2683 closer to the OpenPGP standard than previous versions of PGP, so all
2684 this does is disable @option{--throw-keyids} and set
2685 @option{--escape-from-lines}. All algorithms are allowed except for the
2686 SHA224, SHA384, and SHA512 digests.
2688 @item --compliance @var{string}
2690 This option can be used instead of one of the options above. Valid
2691 values for @var{string} are the above option names (without the double
2692 dash) and possibly others as shown when using "help" for @var{value}.
2697 @c *******************************************
2698 @c ******** ESOTERIC OPTIONS ***************
2699 @c *******************************************
2700 @node GPG Esoteric Options
2701 @subsection Doing things one usually doesn't want to do
2708 Don't make any changes (this is not completely implemented).
2712 Changes the behaviour of some commands. This is like @option{--dry-run} but
2713 different in some cases. The semantic of this option may be extended in
2714 the future. Currently it only skips the actual decryption pass and
2715 therefore enables a fast listing of the encryption keys.
2718 @itemx --interactive
2719 @opindex interactive
2720 Prompt before overwriting any files.
2722 @item --debug-level @var{level}
2723 @opindex debug-level
2724 Select the debug level for investigating problems. @var{level} may be
2725 a numeric value or by a keyword:
2729 No debugging at all. A value of less than 1 may be used instead of
2732 Some basic debug messages. A value between 1 and 2 may be used
2733 instead of the keyword.
2735 More verbose debug messages. A value between 3 and 5 may be used
2736 instead of the keyword.
2738 Even more detailed messages. A value between 6 and 8 may be used
2739 instead of the keyword.
2741 All of the debug messages you can get. A value greater than 8 may be
2742 used instead of the keyword. The creation of hash tracing files is
2743 only enabled if the keyword is used.
2746 How these messages are mapped to the actual debugging flags is not
2747 specified and may change with newer releases of this program. They are
2748 however carefully selected to best aid in debugging.
2750 @item --debug @var{flags}
2752 Set debugging flags. All flags are or-ed and @var{flags} may be given
2753 in C syntax (e.g. 0x0042) or as a comma separated list of flag names.
2754 To get a list of all supported flags the single word "help" can be
2759 Set all useful debugging flags.
2762 @opindex debug-iolbf
2763 Set stdout into line buffered mode. This option is only honored when
2764 given on the command line.
2766 @item --faked-system-time @var{epoch}
2767 @opindex faked-system-time
2768 This option is only useful for testing; it sets the system time back or
2769 forth to @var{epoch} which is the number of seconds elapsed since the year
2770 1970. Alternatively @var{epoch} may be given as a full ISO time string
2771 (e.g. "20070924T154812").
2773 If you suffix @var{epoch} with an exclamation mark (!), the system time
2774 will appear to be frozen at the specified time.
2776 @item --enable-progress-filter
2777 @opindex enable-progress-filter
2778 Enable certain PROGRESS status outputs. This option allows frontends
2779 to display a progress indicator while gpg is processing larger files.
2780 There is a slight performance overhead using it.
2782 @item --status-fd @code{n}
2784 Write special status strings to the file descriptor @code{n}.
2785 See the file DETAILS in the documentation for a listing of them.
2787 @item --status-file @code{file}
2788 @opindex status-file
2789 Same as @option{--status-fd}, except the status data is written to file
2792 @item --logger-fd @code{n}
2794 Write log output to file descriptor @code{n} and not to STDERR.
2796 @item --log-file @code{file}
2797 @itemx --logger-file @code{file}
2799 Same as @option{--logger-fd}, except the logger data is written to
2800 file @code{file}. Use @file{socket://} to log to socket.
2802 @item --attribute-fd @code{n}
2803 @opindex attribute-fd
2804 Write attribute subpackets to the file descriptor @code{n}. This is most
2805 useful for use with @option{--status-fd}, since the status messages are
2806 needed to separate out the various subpackets from the stream delivered
2807 to the file descriptor.
2809 @item --attribute-file @code{file}
2810 @opindex attribute-file
2811 Same as @option{--attribute-fd}, except the attribute data is written to
2814 @item --comment @code{string}
2815 @itemx --no-comments
2817 Use @code{string} as a comment string in cleartext signatures and ASCII
2818 armored messages or keys (see @option{--armor}). The default behavior is
2819 not to use a comment string. @option{--comment} may be repeated multiple
2820 times to get multiple comment strings. @option{--no-comments} removes
2821 all comments. It is a good idea to keep the length of a single comment
2822 below 60 characters to avoid problems with mail programs wrapping such
2823 lines. Note that comment lines, like all other header lines, are not
2824 protected by the signature.
2826 @item --emit-version
2827 @itemx --no-emit-version
2828 @opindex emit-version
2829 Force inclusion of the version string in ASCII armored output. If
2830 given once only the name of the program and the major number is
2831 emitted, given twice the minor is also emitted, given thrice
2832 the micro is added, and given four times an operating system identification
2833 is also emitted. @option{--no-emit-version} (default) disables the version
2836 @item --sig-notation @code{name=value}
2837 @itemx --cert-notation @code{name=value}
2838 @itemx -N, --set-notation @code{name=value}
2839 @opindex sig-notation
2840 @opindex cert-notation
2841 @opindex set-notation
2842 Put the name value pair into the signature as notation data.
2843 @code{name} must consist only of printable characters or spaces, and
2844 must contain a '@@' character in the form keyname@@domain.example.com
2845 (substituting the appropriate keyname and domain name, of course). This
2846 is to help prevent pollution of the IETF reserved notation
2847 namespace. The @option{--expert} flag overrides the '@@'
2848 check. @code{value} may be any printable string; it will be encoded in
2849 UTF-8, so you should check that your @option{--display-charset} is set
2850 correctly. If you prefix @code{name} with an exclamation mark (!), the
2851 notation data will be flagged as critical
2852 (rfc4880:5.2.3.16). @option{--sig-notation} sets a notation for data
2853 signatures. @option{--cert-notation} sets a notation for key signatures
2854 (certifications). @option{--set-notation} sets both.
2856 There are special codes that may be used in notation names. "%k" will
2857 be expanded into the key ID of the key being signed, "%K" into the
2858 long key ID of the key being signed, "%f" into the fingerprint of the
2859 key being signed, "%s" into the key ID of the key making the
2860 signature, "%S" into the long key ID of the key making the signature,
2861 "%g" into the fingerprint of the key making the signature (which might
2862 be a subkey), "%p" into the fingerprint of the primary key of the key
2863 making the signature, "%c" into the signature count from the OpenPGP
2864 smartcard, and "%%" results in a single "%". %k, %K, and %f are only
2865 meaningful when making a key signature (certification), and %c is only
2866 meaningful when using the OpenPGP smartcard.
2868 @item --sig-policy-url @code{string}
2869 @itemx --cert-policy-url @code{string}
2870 @itemx --set-policy-url @code{string}
2871 @opindex sig-policy-url
2872 @opindex cert-policy-url
2873 @opindex set-policy-url
2874 Use @code{string} as a Policy URL for signatures (rfc4880:5.2.3.20). If
2875 you prefix it with an exclamation mark (!), the policy URL packet will
2876 be flagged as critical. @option{--sig-policy-url} sets a policy url for
2877 data signatures. @option{--cert-policy-url} sets a policy url for key
2878 signatures (certifications). @option{--set-policy-url} sets both.
2880 The same %-expandos used for notation data are available here as well.
2882 @item --sig-keyserver-url @code{string}
2883 @opindex sig-keyserver-url
2884 Use @code{string} as a preferred keyserver URL for data signatures. If
2885 you prefix it with an exclamation mark (!), the keyserver URL packet
2886 will be flagged as critical.
2888 The same %-expandos used for notation data are available here as well.
2890 @item --set-filename @code{string}
2891 @opindex set-filename
2892 Use @code{string} as the filename which is stored inside messages.
2893 This overrides the default, which is to use the actual filename of the
2894 file being encrypted. Using the empty string for @code{string}
2895 effectively removes the filename from the output.
2897 @item --for-your-eyes-only
2898 @itemx --no-for-your-eyes-only
2899 @opindex for-your-eyes-only
2900 Set the `for your eyes only' flag in the message. This causes GnuPG to
2901 refuse to save the file unless the @option{--output} option is given,
2902 and PGP to use a "secure viewer" with a claimed Tempest-resistant font
2903 to display the message. This option overrides @option{--set-filename}.
2904 @option{--no-for-your-eyes-only} disables this option.
2906 @item --use-embedded-filename
2907 @itemx --no-use-embedded-filename
2908 @opindex use-embedded-filename
2909 Try to create a file with a name as embedded in the data. This can be
2910 a dangerous option as it enables overwriting files. Defaults to no.
2912 @item --cipher-algo @code{name}
2913 @opindex cipher-algo
2914 Use @code{name} as cipher algorithm. Running the program with the
2915 command @option{--version} yields a list of supported algorithms. If
2916 this is not used the cipher algorithm is selected from the preferences
2917 stored with the key. In general, you do not want to use this option as
2918 it allows you to violate the OpenPGP standard.
2919 @option{--personal-cipher-preferences} is the safe way to accomplish the
2922 @item --digest-algo @code{name}
2923 @opindex digest-algo
2924 Use @code{name} as the message digest algorithm. Running the program
2925 with the command @option{--version} yields a list of supported algorithms. In
2926 general, you do not want to use this option as it allows you to
2927 violate the OpenPGP standard. @option{--personal-digest-preferences} is the
2928 safe way to accomplish the same thing.
2930 @item --compress-algo @code{name}
2931 @opindex compress-algo
2932 Use compression algorithm @code{name}. "zlib" is RFC-1950 ZLIB
2933 compression. "zip" is RFC-1951 ZIP compression which is used by PGP.
2934 "bzip2" is a more modern compression scheme that can compress some
2935 things better than zip or zlib, but at the cost of more memory used
2936 during compression and decompression. "uncompressed" or "none"
2937 disables compression. If this option is not used, the default
2938 behavior is to examine the recipient key preferences to see which
2939 algorithms the recipient supports. If all else fails, ZIP is used for
2940 maximum compatibility.
2942 ZLIB may give better compression results than ZIP, as the compression
2943 window size is not limited to 8k. BZIP2 may give even better
2944 compression results than that, but will use a significantly larger
2945 amount of memory while compressing and decompressing. This may be
2946 significant in low memory situations. Note, however, that PGP (all
2947 versions) only supports ZIP compression. Using any algorithm other
2948 than ZIP or "none" will make the message unreadable with PGP. In
2949 general, you do not want to use this option as it allows you to
2950 violate the OpenPGP standard. @option{--personal-compress-preferences} is the
2951 safe way to accomplish the same thing.
2953 @item --cert-digest-algo @code{name}
2954 @opindex cert-digest-algo
2955 Use @code{name} as the message digest algorithm used when signing a
2956 key. Running the program with the command @option{--version} yields a
2957 list of supported algorithms. Be aware that if you choose an algorithm
2958 that GnuPG supports but other OpenPGP implementations do not, then some
2959 users will not be able to use the key signatures you make, or quite
2960 possibly your entire key.
2962 @item --disable-cipher-algo @code{name}
2963 @opindex disable-cipher-algo
2964 Never allow the use of @code{name} as cipher algorithm.
2965 The given name will not be checked so that a later loaded algorithm
2966 will still get disabled.
2968 @item --disable-pubkey-algo @code{name}
2969 @opindex disable-pubkey-algo
2970 Never allow the use of @code{name} as public key algorithm.
2971 The given name will not be checked so that a later loaded algorithm
2972 will still get disabled.
2974 @item --throw-keyids
2975 @itemx --no-throw-keyids
2976 @opindex throw-keyids
2977 Do not put the recipient key IDs into encrypted messages. This helps to
2978 hide the receivers of the message and is a limited countermeasure
2979 against traffic analysis.@footnote{Using a little social engineering
2980 anyone who is able to decrypt the message can check whether one of the
2981 other recipients is the one he suspects.} On the receiving side, it may
2982 slow down the decryption process because all available secret keys must
2983 be tried. @option{--no-throw-keyids} disables this option. This option
2984 is essentially the same as using @option{--hidden-recipient} for all
2987 @item --not-dash-escaped
2988 @opindex not-dash-escaped
2989 This option changes the behavior of cleartext signatures
2990 so that they can be used for patch files. You should not
2991 send such an armored file via email because all spaces
2992 and line endings are hashed too. You can not use this
2993 option for data which has 5 dashes at the beginning of a
2994 line, patch files don't have this. A special armor header
2995 line tells GnuPG about this cleartext signature option.
2997 @item --escape-from-lines
2998 @itemx --no-escape-from-lines
2999 @opindex escape-from-lines
3000 Because some mailers change lines starting with "From " to ">From " it
3001 is good to handle such lines in a special way when creating cleartext
3002 signatures to prevent the mail system from breaking the signature. Note
3003 that all other PGP versions do it this way too. Enabled by
3004 default. @option{--no-escape-from-lines} disables this option.
3006 @item --passphrase-repeat @code{n}
3007 @opindex passphrase-repeat
3008 Specify how many times @command{@gpgname} will request a new
3009 passphrase be repeated. This is useful for helping memorize a
3010 passphrase. Defaults to 1 repetition.
3012 @item --passphrase-fd @code{n}
3013 @opindex passphrase-fd
3014 Read the passphrase from file descriptor @code{n}. Only the first line
3015 will be read from file descriptor @code{n}. If you use 0 for @code{n},
3016 the passphrase will be read from STDIN. This can only be used if only
3017 one passphrase is supplied.
3019 Note that this passphrase is only used if the option @option{--batch}
3020 has also been given. This is different from GnuPG version 1.x.
3022 @item --passphrase-file @code{file}
3023 @opindex passphrase-file
3024 Read the passphrase from file @code{file}. Only the first line will
3025 be read from file @code{file}. This can only be used if only one
3026 passphrase is supplied. Obviously, a passphrase stored in a file is
3027 of questionable security if other users can read this file. Don't use
3028 this option if you can avoid it.
3029 Note that this passphrase is only used if the option @option{--batch}
3030 has also been given. This is different from GnuPG version 1.x.
3032 @item --passphrase @code{string}
3034 Use @code{string} as the passphrase. This can only be used if only one
3035 passphrase is supplied. Obviously, this is of very questionable
3036 security on a multi-user system. Don't use this option if you can
3038 Note that this passphrase is only used if the option @option{--batch}
3039 has also been given. This is different from GnuPG version 1.x.
3041 @item --pinentry-mode @code{mode}
3042 @opindex pinentry-mode
3043 Set the pinentry mode to @code{mode}. Allowed values for @code{mode}
3047 Use the default of the agent, which is @code{ask}.
3049 Force the use of the Pinentry.
3051 Emulate use of Pinentry's cancel button.
3053 Return a Pinentry error (``No Pinentry'').
3055 Redirect Pinentry queries to the caller. Note that in contrast to
3056 Pinentry the user is not prompted again if he enters a bad password.
3059 @item --command-fd @code{n}
3061 This is a replacement for the deprecated shared-memory IPC mode.
3062 If this option is enabled, user input on questions is not expected
3063 from the TTY but from the given file descriptor. It should be used
3064 together with @option{--status-fd}. See the file doc/DETAILS in the source
3065 distribution for details on how to use it.
3067 @item --command-file @code{file}
3068 @opindex command-file
3069 Same as @option{--command-fd}, except the commands are read out of file
3072 @item --allow-non-selfsigned-uid
3073 @itemx --no-allow-non-selfsigned-uid
3074 @opindex allow-non-selfsigned-uid
3075 Allow the import and use of keys with user IDs which are not
3076 self-signed. This is not recommended, as a non self-signed user ID is
3077 trivial to forge. @option{--no-allow-non-selfsigned-uid} disables.
3079 @item --allow-freeform-uid
3080 @opindex allow-freeform-uid
3081 Disable all checks on the form of the user ID while generating a new
3082 one. This option should only be used in very special environments as
3083 it does not ensure the de-facto standard format of user IDs.
3085 @item --ignore-time-conflict
3086 @opindex ignore-time-conflict
3087 GnuPG normally checks that the timestamps associated with keys and
3088 signatures have plausible values. However, sometimes a signature
3089 seems to be older than the key due to clock problems. This option
3090 makes these checks just a warning. See also @option{--ignore-valid-from} for
3091 timestamp issues on subkeys.
3093 @item --ignore-valid-from
3094 @opindex ignore-valid-from
3095 GnuPG normally does not select and use subkeys created in the future.
3096 This option allows the use of such keys and thus exhibits the
3097 pre-1.0.7 behaviour. You should not use this option unless there
3098 is some clock problem. See also @option{--ignore-time-conflict} for timestamp
3099 issues with signatures.
3101 @item --ignore-crc-error
3102 @opindex ignore-crc-error
3103 The ASCII armor used by OpenPGP is protected by a CRC checksum against
3104 transmission errors. Occasionally the CRC gets mangled somewhere on
3105 the transmission channel but the actual content (which is protected by
3106 the OpenPGP protocol anyway) is still okay. This option allows GnuPG
3107 to ignore CRC errors.
3109 @item --ignore-mdc-error
3110 @opindex ignore-mdc-error
3111 This option changes a MDC integrity protection failure into a warning.
3112 This can be useful if a message is partially corrupt, but it is
3113 necessary to get as much data as possible out of the corrupt message.
3114 However, be aware that a MDC protection failure may also mean that the
3115 message was tampered with intentionally by an attacker.
3117 @item --allow-weak-digest-algos
3118 @opindex allow-weak-digest-algos
3119 Signatures made with known-weak digest algorithms are normally
3120 rejected with an ``invalid digest algorithm'' message. This option
3121 allows the verification of signatures made with such weak algorithms.
3122 MD5 is the only digest algorithm considered weak by default. See also
3123 @option{--weak-digest} to reject other digest algorithms.
3125 @item --weak-digest @code{name}
3126 @opindex weak-digest
3127 Treat the specified digest algorithm as weak. Signatures made over
3128 weak digests algorithms are normally rejected. This option can be
3129 supplied multiple times if multiple algorithms should be considered
3130 weak. See also @option{--allow-weak-digest-algos} to disable
3131 rejection of weak digests. MD5 is always considered weak, and does
3132 not need to be listed explicitly.
3134 @item --no-default-keyring
3135 @opindex no-default-keyring
3136 Do not add the default keyrings to the list of keyrings. Note that
3137 GnuPG will not operate without any keyrings, so if you use this option
3138 and do not provide alternate keyrings via @option{--keyring} or
3139 @option{--secret-keyring}, then GnuPG will still use the default public or
3144 Do not add use any keyrings even if specified as options.
3147 @opindex skip-verify
3148 Skip the signature verification step. This may be
3149 used to make the decryption faster if the signature
3150 verification is not needed.
3152 @item --with-key-data
3153 @opindex with-key-data
3154 Print key listings delimited by colons (like @option{--with-colons}) and
3155 print the public key data.
3157 @item --fast-list-mode
3158 @opindex fast-list-mode
3159 Changes the output of the list commands to work faster; this is achieved
3160 by leaving some parts empty. Some applications don't need the user ID
3161 and the trust information given in the listings. By using this options
3162 they can get a faster listing. The exact behaviour of this option may
3163 change in future versions. If you are missing some information, don't
3168 This is not for normal use. Use the source to see for what it might be useful.
3170 @item --set-filesize
3171 @opindex set-filesize
3172 This is not for normal use. Use the source to see for what it might be useful.
3174 @item --show-session-key
3175 @opindex show-session-key
3176 Display the session key used for one message. See
3177 @option{--override-session-key} for the counterpart of this option.
3179 We think that Key Escrow is a Bad Thing; however the user should have
3180 the freedom to decide whether to go to prison or to reveal the content
3181 of one specific message without compromising all messages ever
3182 encrypted for one secret key.
3184 You can also use this option if you receive an encrypted message which
3185 is abusive or offensive, to prove to the administrators of the
3186 messaging system that the ciphertext transmitted corresponds to an
3187 inappropriate plaintext so they can take action against the offending
3190 @item --override-session-key @code{string}
3191 @itemx --override-session-key-fd @code{fd}
3192 @opindex override-session-key
3193 Don't use the public key but the session key @code{string} respective
3194 the session key taken from the first line read from file descriptor
3195 @code{fd}. The format of this string is the same as the one printed
3196 by @option{--show-session-key}. This option is normally not used but
3197 comes handy in case someone forces you to reveal the content of an
3198 encrypted message; using this option you can do this without handing
3199 out the secret key. Note that using @option{--override-session-key}
3200 may reveal the session key to all local users via the global process
3203 @item --ask-sig-expire
3204 @itemx --no-ask-sig-expire
3205 @opindex ask-sig-expire
3206 When making a data signature, prompt for an expiration time. If this
3207 option is not specified, the expiration time set via
3208 @option{--default-sig-expire} is used. @option{--no-ask-sig-expire}
3209 disables this option.
3211 @item --default-sig-expire
3212 @opindex default-sig-expire
3213 The default expiration time to use for signature expiration. Valid
3214 values are "0" for no expiration, a number followed by the letter d
3215 (for days), w (for weeks), m (for months), or y (for years) (for
3216 example "2m" for two months, or "5y" for five years), or an absolute
3217 date in the form YYYY-MM-DD. Defaults to "0".
3219 @item --ask-cert-expire
3220 @itemx --no-ask-cert-expire
3221 @opindex ask-cert-expire
3222 When making a key signature, prompt for an expiration time. If this
3223 option is not specified, the expiration time set via
3224 @option{--default-cert-expire} is used. @option{--no-ask-cert-expire}
3225 disables this option.
3227 @item --default-cert-expire
3228 @opindex default-cert-expire
3229 The default expiration time to use for key signature expiration.
3230 Valid values are "0" for no expiration, a number followed by the
3231 letter d (for days), w (for weeks), m (for months), or y (for years)
3232 (for example "2m" for two months, or "5y" for five years), or an
3233 absolute date in the form YYYY-MM-DD. Defaults to "0".
3235 @item --default-new-key-algo @var{string}
3236 @opindex default-new-key-algo @var{string}
3237 This option can be used to change the default algorithms for key
3238 generation. Note that the advanced key generation commands can always
3239 be used to specify a key algorithm directly. Please consult the
3240 source code to learn the syntax of @var{string}.
3242 @item --allow-secret-key-import
3243 @opindex allow-secret-key-import
3244 This is an obsolete option and is not used anywhere.
3246 @item --allow-multiple-messages
3247 @item --no-allow-multiple-messages
3248 @opindex allow-multiple-messages
3249 Allow processing of multiple OpenPGP messages contained in a single file
3250 or stream. Some programs that call GPG are not prepared to deal with
3251 multiple messages being processed together, so this option defaults to
3252 no. Note that versions of GPG prior to 1.4.7 always allowed multiple
3255 Warning: Do not use this option unless you need it as a temporary
3259 @item --enable-special-filenames
3260 @opindex enable-special-filenames
3261 This option enables a mode in which filenames of the form
3262 @file{-&n}, where n is a non-negative decimal number,
3263 refer to the file descriptor n and not to a file with that name.
3265 @item --no-expensive-trust-checks
3266 @opindex no-expensive-trust-checks
3267 Experimental use only.
3269 @item --preserve-permissions
3270 @opindex preserve-permissions
3271 Don't change the permissions of a secret keyring back to user
3272 read/write only. Use this option only if you really know what you are doing.
3274 @item --default-preference-list @code{string}
3275 @opindex default-preference-list
3276 Set the list of default preferences to @code{string}. This preference
3277 list is used for new keys and becomes the default for "setpref" in the
3280 @item --default-keyserver-url @code{name}
3281 @opindex default-keyserver-url
3282 Set the default keyserver URL to @code{name}. This keyserver will be
3283 used as the keyserver URL when writing a new self-signature on a key,
3284 which includes key generation and changing preferences.
3287 @opindex list-config
3288 Display various internal configuration parameters of GnuPG. This option
3289 is intended for external programs that call GnuPG to perform tasks, and
3290 is thus not generally useful. See the file @file{doc/DETAILS} in the
3291 source distribution for the details of which configuration items may be
3292 listed. @option{--list-config} is only usable with
3293 @option{--with-colons} set.
3295 @item --list-gcrypt-config
3296 @opindex list-gcrypt-config
3297 Display various internal configuration parameters of Libgcrypt.
3299 @item --gpgconf-list
3300 @opindex gpgconf-list
3301 This command is similar to @option{--list-config} but in general only
3302 internally used by the @command{gpgconf} tool.
3304 @item --gpgconf-test
3305 @opindex gpgconf-test
3306 This is more or less dummy action. However it parses the configuration
3307 file and returns with failure if the configuration file would prevent
3308 @command{@gpgname} from startup. Thus it may be used to run a syntax check
3309 on the configuration file.
3313 @c *******************************
3314 @c ******* Deprecated ************
3315 @c *******************************
3316 @node Deprecated Options
3317 @subsection Deprecated options
3322 @itemx --no-show-photos
3323 @opindex show-photos
3324 Causes @option{--list-keys}, @option{--list-signatures},
3325 @option{--list-public-keys}, @option{--list-secret-keys}, and verifying
3326 a signature to also display the photo ID attached to the key, if
3327 any. See also @option{--photo-viewer}. These options are deprecated. Use
3328 @option{--list-options [no-]show-photos} and/or @option{--verify-options
3329 [no-]show-photos} instead.
3331 @item --show-keyring
3332 @opindex show-keyring
3333 Display the keyring name at the head of key listings to show which
3334 keyring a given key resides on. This option is deprecated: use
3335 @option{--list-options [no-]show-keyring} instead.
3337 @item --always-trust
3338 @opindex always-trust
3339 Identical to @option{--trust-model always}. This option is deprecated.
3341 @item --show-notation
3342 @itemx --no-show-notation
3343 @opindex show-notation
3344 Show signature notations in the @option{--list-signatures} or @option{--check-signatures} listings
3345 as well as when verifying a signature with a notation in it. These
3346 options are deprecated. Use @option{--list-options [no-]show-notation}
3347 and/or @option{--verify-options [no-]show-notation} instead.
3349 @item --show-policy-url
3350 @itemx --no-show-policy-url
3351 @opindex show-policy-url
3352 Show policy URLs in the @option{--list-signatures} or @option{--check-signatures}
3353 listings as well as when verifying a signature with a policy URL in
3354 it. These options are deprecated. Use @option{--list-options
3355 [no-]show-policy-url} and/or @option{--verify-options
3356 [no-]show-policy-url} instead.
3362 @c *******************************************
3363 @c *************** ****************
3364 @c *************** FILES ****************
3365 @c *************** ****************
3366 @c *******************************************
3368 @node GPG Configuration
3369 @section Configuration files
3371 There are a few configuration files to control certain aspects of
3372 @command{@gpgname}'s operation. Unless noted, they are expected in the
3373 current home directory (@pxref{option --homedir}).
3379 This is the standard configuration file read by @command{@gpgname} on
3380 startup. It may contain any valid long option; the leading two dashes
3381 may not be entered and the option may not be abbreviated. This default
3382 name may be changed on the command line (@pxref{gpg-option --options}).
3383 You should backup this file.
3387 Note that on larger installations, it is useful to put predefined files
3388 into the directory @file{@value{SYSCONFSKELDIR}} so that
3389 newly created users start up with a working configuration.
3390 For existing users a small
3391 helper script is provided to create these files (@pxref{addgnupghome}).
3393 For internal purposes @command{@gpgname} creates and maintains a few other
3394 files; They all live in the current home directory (@pxref{option
3395 --homedir}). Only the @command{@gpgname} program may modify these files.
3401 This is the default home directory which is used if neither the
3402 environment variable @code{GNUPGHOME} nor the option
3403 @option{--homedir} is given.
3405 @item ~/.gnupg/pubring.gpg
3406 @efindex pubring.gpg
3407 The public keyring. You should backup this file.
3409 @item ~/.gnupg/pubring.gpg.lock
3410 The lock file for the public keyring.
3412 @item ~/.gnupg/pubring.kbx
3413 @efindex pubring.kbx
3414 The public keyring using a different format. This file is shared
3415 with @command{gpgsm}. You should backup this file.
3417 @item ~/.gnupg/pubring.kbx.lock
3418 The lock file for @file{pubring.kbx}.
3420 @item ~/.gnupg/secring.gpg
3421 @efindex secring.gpg
3422 A secret keyring as used by GnuPG versions before 2.1. It is not
3423 used by GnuPG 2.1 and later.
3425 @item ~/.gnupg/secring.gpg.lock
3426 The lock file for the secret keyring.
3428 @item ~/.gnupg/.gpg-v21-migrated
3429 @efindex .gpg-v21-migrated
3430 File indicating that a migration to GnuPG 2.1 has been done.
3432 @item ~/.gnupg/trustdb.gpg
3433 @efindex trustdb.gpg
3434 The trust database. There is no need to backup this file; it is better
3435 to backup the ownertrust values (@pxref{option --export-ownertrust}).
3437 @item ~/.gnupg/trustdb.gpg.lock
3438 The lock file for the trust database.
3440 @item ~/.gnupg/random_seed
3441 @efindex random_seed
3442 A file used to preserve the state of the internal random pool.
3444 @item ~/.gnupg/openpgp-revocs.d/
3445 @efindex openpgp-revocs.d
3446 This is the directory where gpg stores pre-generated revocation
3447 certificates. The file name corresponds to the OpenPGP fingerprint of
3448 the respective key. It is suggested to backup those certificates and
3449 if the primary private key is not stored on the disk to move them to
3450 an external storage device. Anyone who can access theses files is
3451 able to revoke the corresponding key. You may want to print them out.
3452 You should backup all files in this directory and take care to keep
3453 this backup closed away.
3455 @item @value{DATADIR}/options.skel
3456 @efindex options.skel
3457 The skeleton options file.
3461 Operation is further controlled by a few environment variables:
3467 Used to locate the default home directory.
3471 If set directory used instead of "~/.gnupg".
3473 @item GPG_AGENT_INFO
3474 This variable is obsolete; it was used by GnuPG versions before 2.1.
3476 @item PINENTRY_USER_DATA
3477 @efindex PINENTRY_USER_DATA
3478 This value is passed via gpg-agent to pinentry. It is useful to convey
3479 extra information to a custom pinentry.
3485 Used to size some displays to the full size of the screen.
3489 Apart from its use by GNU, it is used in the W32 version to override the
3490 language selection done through the Registry. If used and set to a
3491 valid and available language name (@var{langid}), the file with the
3492 translation is loaded from
3493 @code{@var{gpgdir}/gnupg.nls/@var{langid}.mo}. Here @var{gpgdir} is the
3494 directory out of which the gpg binary has been loaded. If it can't be
3495 loaded the Registry is tried and as last resort the native Windows
3496 locale system is used.
3501 @c *******************************************
3502 @c *************** ****************
3503 @c *************** EXAMPLES ****************
3504 @c *************** ****************
3505 @c *******************************************
3512 @item gpg -se -r @code{Bob} @code{file}
3513 sign and encrypt for user Bob
3515 @item gpg --clear-sign @code{file}
3516 make a cleartext signature
3518 @item gpg -sb @code{file}
3519 make a detached signature
3521 @item gpg -u 0x12345678 -sb @code{file}
3522 make a detached signature with the key 0x12345678
3524 @item gpg --list-keys @code{user_ID}
3527 @item gpg --fingerprint @code{user_ID}
3530 @item gpg --verify @code{pgpfile}
3531 @itemx gpg --verify @code{sigfile} [@code{datafile}]
3532 Verify the signature of the file but do not output the data unless
3533 requested. The second form is used for detached signatures, where
3534 @code{sigfile} is the detached signature (either ASCII armored or
3535 binary) and @code{datafile} are the signed data; if this is not given, the name of the
3536 file holding the signed data is constructed by cutting off the
3537 extension (".asc" or ".sig") of @code{sigfile} or by asking the user
3538 for the filename. If the option @option{--output} is also used the
3539 signed data is written to the file specified by that option; use
3540 @code{-} to write the signed data to stdout.
3544 @c *******************************************
3545 @c *************** ****************
3546 @c *************** USER ID ****************
3547 @c *************** ****************
3548 @c *******************************************
3549 @mansect how to specify a user id
3551 @include specify-user-id.texi
3554 @mansect filter expressions
3555 @chapheading FILTER EXPRESSIONS
3557 The options @option{--import-filter} and @option{--export-filter} use
3558 expressions with this syntax (square brackets indicate an optional
3559 part and curly braces a repetition, white space between the elements
3564 [lc] @{[@{flag@}] PROPNAME op VALUE [lc]@}
3568 The name of a property (@var{PROPNAME}) may only consist of letters,
3569 digits and underscores. The description for the filter type
3570 describes which properties are defined. If an undefined property is
3571 used it evaluates to the empty string. Unless otherwise noted, the
3572 @var{VALUE} must always be given and may not be the empty string. No
3573 quoting is defined for the value, thus the value may not contain the
3574 strings @code{&&} or @code{||}, which are used as logical connection
3575 operators. The flag @code{--} can be used to remove this restriction.
3577 Numerical values are computed as long int; standard C notation
3578 applies. @var{lc} is the logical connection operator; either
3579 @code{&&} for a conjunction or @code{||} for a disjunction. A
3580 conjunction is assumed at the begin of an expression. Conjunctions
3581 have higher precedence than disjunctions. If @var{VALUE} starts with
3582 one of the characters used in any @var{op} a space after the
3583 @var{op} is required.
3586 The supported operators (@var{op}) are:
3591 Substring must match.
3594 Substring must not match.
3597 The full string must match.
3600 The full string must not match.
3603 The numerical value must match.
3606 The numerical value must not match.
3609 The numerical value of the field must be LE than the value.
3612 The numerical value of the field must be LT than the value.
3615 The numerical value of the field must be GT than the value.
3618 The numerical value of the field must be GE than the value.
3621 The string value of the field must be less or equal than the value.
3624 The string value of the field must be less than the value.
3627 The string value of the field must be greater than the value.
3630 The string value of the field must be greater or equal than the value.
3633 True if value is not empty (no value allowed).
3636 True if value is empty (no value allowed).
3639 Alias for "PROPNAME != 0" (no value allowed).
3642 Alias for "PROPNAME == 0" (no value allowed).
3647 Values for @var{flag} must be space separated. The supported flags
3652 @var{VALUE} spans to the end of the expression.
3654 The string match in this part is done case-sensitive.
3657 The filter options concatenate several specifications for a filter of
3658 the same type. For example the four options in this example:
3662 --import-option keep-uid="uid =~ Alfa"
3663 --import-option keep-uid="&& uid !~ Test"
3664 --import-option keep-uid="|| uid =~ Alpha"
3665 --import-option keep-uid="uid !~ Test"
3670 which is equivalent to
3675 keep-uid="uid =~ Alfa" && uid !~ Test" || uid =~ Alpha" && "uid !~ Test"
3679 imports only the user ids of a key containing the strings "Alfa"
3680 or "Alpha" but not the string "test".
3683 @mansect return value
3684 @chapheading RETURN VALUE
3686 The program returns 0 if everything was fine, 1 if at least
3687 a signature was bad, and other error codes for fatal errors.
3690 @chapheading WARNINGS
3692 Use a *good* password for your user account and a *good* passphrase
3693 to protect your secret key. This passphrase is the weakest part of the
3694 whole system. Programs to do dictionary attacks on your secret keyring
3695 are very easy to write and so you should protect your "~/.gnupg/"
3696 directory very well.
3698 Keep in mind that, if this program is used over a network (telnet), it
3699 is *very* easy to spy out your passphrase!
3701 If you are going to verify detached signatures, make sure that the
3702 program knows about it; either give both filenames on the command line
3703 or use @samp{-} to specify STDIN.
3705 @mansect interoperability
3706 @chapheading INTEROPERABILITY WITH OTHER OPENPGP PROGRAMS
3708 GnuPG tries to be a very flexible implementation of the OpenPGP
3709 standard. In particular, GnuPG implements many of the optional parts
3710 of the standard, such as the SHA-512 hash, and the ZLIB and BZIP2
3711 compression algorithms. It is important to be aware that not all
3712 OpenPGP programs implement these optional algorithms and that by
3713 forcing their use via the @option{--cipher-algo},
3714 @option{--digest-algo}, @option{--cert-digest-algo}, or
3715 @option{--compress-algo} options in GnuPG, it is possible to create a
3716 perfectly valid OpenPGP message, but one that cannot be read by the
3719 There are dozens of variations of OpenPGP programs available, and each
3720 supports a slightly different subset of these optional algorithms.
3721 For example, until recently, no (unhacked) version of PGP supported
3722 the BLOWFISH cipher algorithm. A message using BLOWFISH simply could
3723 not be read by a PGP user. By default, GnuPG uses the standard
3724 OpenPGP preferences system that will always do the right thing and
3725 create messages that are usable by all recipients, regardless of which
3726 OpenPGP program they use. Only override this safe default if you
3727 really know what you are doing.
3729 If you absolutely must override the safe default, or if the preferences
3730 on a given key are invalid for some reason, you are far better off using
3731 the @option{--pgp6}, @option{--pgp7}, or @option{--pgp8} options. These
3732 options are safe as they do not force any particular algorithms in
3733 violation of OpenPGP, but rather reduce the available algorithms to a
3739 On older systems this program should be installed as setuid(root). This
3740 is necessary to lock memory pages. Locking memory pages prevents the
3741 operating system from writing memory pages (which may contain
3742 passphrases or other sensitive material) to disk. If you get no
3743 warning message about insecure memory your operating system supports
3744 locking without being root. The program drops root privileges as soon
3745 as locked memory is allocated.
3747 Note also that some systems (especially laptops) have the ability to
3748 ``suspend to disk'' (also known as ``safe sleep'' or ``hibernate'').
3749 This writes all memory to disk before going into a low power or even
3750 powered off mode. Unless measures are taken in the operating system
3751 to protect the saved memory, passphrases or other sensitive material
3752 may be recoverable from it later.
3754 Before you report a bug you should first search the mailing list
3755 archives for similar problems and second check whether such a bug has
3756 already been reported to our bug tracker at http://bugs.gnupg.org .
3758 @c *******************************************
3759 @c *************** **************
3760 @c *************** UNATTENDED **************
3761 @c *************** **************
3762 @c *******************************************
3764 @node Unattended Usage of GPG
3765 @section Unattended Usage
3767 @command{@gpgname} is often used as a backend engine by other software. To help
3768 with this a machine interface has been defined to have an unambiguous
3769 way to do this. The options @option{--status-fd} and @option{--batch}
3770 are almost always required for this.
3773 * Programmatic use of GnuPG:: Programmatic use of GnuPG
3774 * Ephemeral home directories:: Ephemeral home directories
3775 * The quick key manipulation interface:: The quick key manipulation interface
3776 * Unattended GPG key generation:: Unattended key generation
3780 @node Programmatic use of GnuPG
3781 @subsection Programmatic use of GnuPG
3783 Please consider using GPGME instead of calling @command{@gpgname}
3784 directly. GPGME offers a stable, backend-independent interface for
3785 many cryptographic operations. It supports OpenPGP and S/MIME, and
3786 also allows interaction with various GnuPG components.
3788 GPGME provides a C-API, and comes with bindings for C++, Qt, and
3789 Python. Bindings for other languages are available.
3791 @node Ephemeral home directories
3792 @subsection Ephemeral home directories
3794 Sometimes you want to contain effects of some operation, for example
3795 you want to import a key to inspect it, but you do not want this key
3796 to be added to your keyring. In earlier versions of GnuPG, it was
3797 possible to specify alternate keyring files for both public and secret
3798 keys. In modern GnuPG versions, however, we changed how secret keys
3799 are stored in order to better protect secret key material, and it was
3800 not possible to preserve this interface.
3802 The preferred way to do this is to use ephemeral home directories.
3803 This technique works across all versions of GnuPG.
3805 Create a temporary directory, create (or copy) a configuration that
3806 meets your needs, make @command{@gpgname} use this directory either
3807 using the environment variable @var{GNUPGHOME}, or the option
3808 @option{--homedir}. GPGME supports this too on a per-context basis,
3809 by modifying the engine info of contexts. Now execute whatever
3810 operation you like, import and export key material as necessary. Once
3811 finished, you can delete the directory. All GnuPG backend services
3812 that were started will detect this and shut down.
3814 @node The quick key manipulation interface
3815 @subsection The quick key manipulation interface
3817 Recent versions of GnuPG have an interface to manipulate keys without
3818 using the interactive command @option{--edit-key}. This interface was
3819 added mainly for the benefit of GPGME (please consider using GPGME,
3820 see the manual subsection ``Programmatic use of GnuPG''). This
3821 interface is described in the subsection ``How to manage your keys''.
3823 @node Unattended GPG key generation
3824 @subsection Unattended key generation
3826 The command @option{--generate-key} may be used along with the option
3827 @option{--batch} for unattended key generation. This is the most
3828 flexible way of generating keys, but it is also the most complex one.
3829 Consider using the quick key manipulation interface described in the
3830 previous subsection ``The quick key manipulation interface''.
3832 The parameters for the key are either read from stdin or given as a
3833 file on the command line. The format of the parameter file is as
3837 @item Text only, line length is limited to about 1000 characters.
3838 @item UTF-8 encoding must be used to specify non-ASCII characters.
3839 @item Empty lines are ignored.
3840 @item Leading and trailing while space is ignored.
3841 @item A hash sign as the first non white space character indicates
3843 @item Control statements are indicated by a leading percent sign, the
3844 arguments are separated by white space from the keyword.
3845 @item Parameters are specified by a keyword, followed by a colon. Arguments
3846 are separated by white space.
3848 The first parameter must be @samp{Key-Type}; control statements may be
3851 The order of the parameters does not matter except for @samp{Key-Type}
3852 which must be the first parameter. The parameters are only used for
3853 the generated keyblock (primary and subkeys); parameters from previous
3854 sets are not used. Some syntactically checks may be performed.
3856 Key generation takes place when either the end of the parameter file
3857 is reached, the next @samp{Key-Type} parameter is encountered or at the
3858 control statement @samp{%commit} is encountered.
3866 @item %echo @var{text}
3867 Print @var{text} as diagnostic.
3870 Suppress actual key generation (useful for syntax checking).
3873 Perform the key generation. Note that an implicit commit is done at
3874 the next @asis{Key-Type} parameter.
3876 @item %pubring @var{filename}
3877 Do not write the key to the default or commandline given keyring but
3878 to @var{filename}. This must be given before the first commit to take
3879 place, duplicate specification of the same filename is ignored, the
3880 last filename before a commit is used. The filename is used until a
3881 new filename is used (at commit points) and all keys are written to
3882 that file. If a new filename is given, this file is created (and
3883 overwrites an existing one).
3885 See the previous subsection ``Ephemeral home directories'' for a more
3886 robust way to contain side-effects.
3888 @item %secring @var{filename}
3889 This option is a no-op for GnuPG 2.1 and later.
3891 See the previous subsection ``Ephemeral home directories''.
3893 @item %ask-passphrase
3894 @itemx %no-ask-passphrase
3895 This option is a no-op for GnuPG 2.1 and later.
3897 @item %no-protection
3898 Using this option allows the creation of keys without any passphrase
3899 protection. This option is mainly intended for regression tests.
3901 @item %transient-key
3902 If given the keys are created using a faster and a somewhat less
3903 secure random number generator. This option may be used for keys
3904 which are only used for a short time and do not require full
3905 cryptographic strength. It takes only effect if used together with
3906 the control statement @samp{%no-protection}.
3915 @item Key-Type: @var{algo}
3916 Starts a new parameter block by giving the type of the primary
3917 key. The algorithm must be capable of signing. This is a required
3918 parameter. @var{algo} may either be an OpenPGP algorithm number or a
3919 string with the algorithm name. The special value @samp{default} may
3920 be used for @var{algo} to create the default key type; in this case a
3921 @samp{Key-Usage} shall not be given and @samp{default} also be used
3922 for @samp{Subkey-Type}.
3924 @item Key-Length: @var{nbits}
3925 The requested length of the generated key in bits. The default is
3926 returned by running the command @samp{@gpgname --gpgconf-list}.
3928 @item Key-Grip: @var{hexstring}
3929 This is optional and used to generate a CSR or certificate for an
3930 already existing key. Key-Length will be ignored when given.
3932 @item Key-Usage: @var{usage-list}
3933 Space or comma delimited list of key usages. Allowed values are
3934 @samp{encrypt}, @samp{sign}, and @samp{auth}. This is used to
3935 generate the key flags. Please make sure that the algorithm is
3936 capable of this usage. Note that OpenPGP requires that all primary
3937 keys are capable of certification, so no matter what usage is given
3938 here, the @samp{cert} flag will be on. If no @samp{Key-Usage} is
3939 specified and the @samp{Key-Type} is not @samp{default}, all allowed
3940 usages for that particular algorithm are used; if it is not given but
3941 @samp{default} is used the usage will be @samp{sign}.
3943 @item Subkey-Type: @var{algo}
3944 This generates a secondary key (subkey). Currently only one subkey
3945 can be handled. See also @samp{Key-Type} above.
3947 @item Subkey-Length: @var{nbits}
3948 Length of the secondary key (subkey) in bits. The default is returned
3949 by running the command @samp{@gpgname --gpgconf-list}.
3951 @item Subkey-Usage: @var{usage-list}
3952 Key usage lists for a subkey; similar to @samp{Key-Usage}.
3954 @item Passphrase: @var{string}
3955 If you want to specify a passphrase for the secret key, enter it here.
3956 Default is to use the Pinentry dialog to ask for a passphrase.
3958 @item Name-Real: @var{name}
3959 @itemx Name-Comment: @var{comment}
3960 @itemx Name-Email: @var{email}
3961 The three parts of a user name. Remember to use UTF-8 encoding here.
3962 If you don't give any of them, no user ID is created.
3964 @item Expire-Date: @var{iso-date}|(@var{number}[d|w|m|y])
3965 Set the expiration date for the key (and the subkey). It may either
3966 be entered in ISO date format (e.g. "20000815T145012") or as number of
3967 days, weeks, month or years after the creation date. The special
3968 notation "seconds=N" is also allowed to specify a number of seconds
3969 since creation. Without a letter days are assumed. Note that there
3970 is no check done on the overflow of the type used by OpenPGP for
3971 timestamps. Thus you better make sure that the given value make
3972 sense. Although OpenPGP works with time intervals, GnuPG uses an
3973 absolute value internally and thus the last year we can represent is
3976 @item Creation-Date: @var{iso-date}
3977 Set the creation date of the key as stored in the key information and
3978 which is also part of the fingerprint calculation. Either a date like
3979 "1986-04-26" or a full timestamp like "19860426T042640" may be used.
3980 The time is considered to be UTC. The special notation "seconds=N"
3981 may be used to directly specify a the number of seconds since Epoch
3982 (Unix time). If it is not given the current time is used.
3984 @item Preferences: @var{string}
3985 Set the cipher, hash, and compression preference values for this key.
3986 This expects the same type of string as the sub-command @samp{setpref}
3987 in the @option{--edit-key} menu.
3989 @item Revoker: @var{algo}:@var{fpr} [sensitive]
3990 Add a designated revoker to the generated key. Algo is the public key
3991 algorithm of the designated revoker (i.e. RSA=1, DSA=17, etc.)
3992 @var{fpr} is the fingerprint of the designated revoker. The optional
3993 @samp{sensitive} flag marks the designated revoker as sensitive
3994 information. Only v4 keys may be designated revokers.
3996 @item Keyserver: @var{string}
3997 This is an optional parameter that specifies the preferred keyserver
4000 @item Handle: @var{string}
4001 This is an optional parameter only used with the status lines
4002 KEY_CREATED and KEY_NOT_CREATED. @var{string} may be up to 100
4003 characters and should not contain spaces. It is useful for batch key
4004 generation to associate a key parameter block with a status line.
4009 Here is an example on how to create a key in an ephemeral home directory:
4011 $ export GNUPGHOME="$(mktemp -d)"
4013 %echo Generating a basic OpenPGP key
4018 Name-Real: Joe Tester
4019 Name-Comment: with stupid passphrase
4020 Name-Email: joe@@foo.bar
4023 # Do a commit here, so that we can later print "done" :-)
4027 $ @gpgname --batch --generate-key foo
4029 $ @gpgname --list-secret-keys
4030 /tmp/tmp.0NQxB74PEf/pubring.kbx
4031 -------------------------------
4032 sec dsa1024 2016-12-16 [SCA]
4033 768E895903FC1C44045C8CB95EEBDB71E9E849D0
4034 uid [ultimate] Joe Tester (with stupid passphrase) <joe@@foo.bar>
4035 ssb elg1024 2016-12-16 [E]
4039 If you want to create a key with the default algorithms you would use
4042 %echo Generating a default key
4044 Subkey-Type: default
4045 Name-Real: Joe Tester
4046 Name-Comment: with stupid passphrase
4047 Name-Email: joe@@foo.bar
4050 # Do a commit here, so that we can later print "done" :-)
4062 @command{gpg-agent}(1)
4064 @include see-also-note.texi