mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-18 14:17:03 +01:00
* gpg.sgml: Clarify --edit/addrevoker (sensitive), and --keyserver-options
(--import/export-options may be used as well). Document --import-options and --export-options with their various options. --show-photos now works during signature verification as well. Document --exec-path. Note in --simple-sk-checksum that the passphrase must be changed for this to take effect. Note that --pgp7 does not disable MDC. Document --no-mdc-warning.
This commit is contained in:
parent
7de95ff2e6
commit
46e07daa31
@ -1,3 +1,13 @@
|
|||||||
|
2002-07-30 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* gpg.sgml: Clarify --edit/addrevoker (sensitive), and
|
||||||
|
--keyserver-options (--import/export-options may be used as well).
|
||||||
|
Document --import-options and --export-options with their various
|
||||||
|
options. --show-photos now works during signature verification as
|
||||||
|
well. Document --exec-path. Note in --simple-sk-checksum that
|
||||||
|
the passphrase must be changed for this to take effect. Note that
|
||||||
|
--pgp7 does not disable MDC. Document --no-mdc-warning.
|
||||||
|
|
||||||
2002-07-25 David Shaw <dshaw@jabberwocky.com>
|
2002-07-25 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* gpg.sgml: Clarify the differences between "pref" and "showpref".
|
* gpg.sgml: Clarify the differences between "pref" and "showpref".
|
||||||
|
110
doc/gpg.sgml
110
doc/gpg.sgml
@ -349,7 +349,10 @@ Remove a subkey.</para></listitem></varlistentry>
|
|||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>addrevoker</term>
|
<term>addrevoker</term>
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
Add a designated revoker.</para></listitem></varlistentry>
|
Add a designated revoker. This takes one optional argument:
|
||||||
|
"sensitive". If a designated revoker is marked as sensitive, it will
|
||||||
|
not be exported by default (see
|
||||||
|
export-options).</para></listitem></varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>revkey</term>
|
<term>revkey</term>
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
@ -962,8 +965,10 @@ each time.
|
|||||||
<listitem><para>
|
<listitem><para>
|
||||||
This is a space or comma delimited string that gives options for the
|
This is a space or comma delimited string that gives options for the
|
||||||
keyserver. Options can be prepended with a `no-' to give the opposite
|
keyserver. Options can be prepended with a `no-' to give the opposite
|
||||||
meaning. While not all options are available for all keyserver types,
|
meaning. Valid import-options or export-options may be used here as
|
||||||
some common options are:
|
well to apply to importing (--recv-key) or exporting (--send-key) a
|
||||||
|
key from a keyserver. While not all options are available for all
|
||||||
|
keyserver types, some common options are:
|
||||||
<variablelist>
|
<variablelist>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -1026,12 +1031,81 @@ keyring.
|
|||||||
</variablelist>
|
</variablelist>
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>--import-options <parameter>parameters</parameter></term>
|
||||||
|
<listitem><para>
|
||||||
|
This is a space or comma delimited string that gives options for
|
||||||
|
importing keys. Options can be prepended with a `no-' to give the
|
||||||
|
opposite meaning. The options are:
|
||||||
|
<variablelist>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>allow-local-sigs</term>
|
||||||
|
<listitem><para>
|
||||||
|
Allow importing key signatures marked as "local". This is not
|
||||||
|
generally useful unless a shared keyring scheme is being used.
|
||||||
|
Defaults to no.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>repair-hkp-subkey-bug</term>
|
||||||
|
<listitem><para>
|
||||||
|
During import, attempt to repair the HKP keyserver mangling multiple
|
||||||
|
subkeys bug. Note that this cannot completely repair the damaged key
|
||||||
|
as some crucial data is removed by the keyserver, but it does at least
|
||||||
|
give you back one subkey. Defaults to no for regular --import and to
|
||||||
|
yes for keyserver --recv-keys.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
</variablelist>
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>--export-options <parameter>parameters</parameter></term>
|
||||||
|
<listitem><para>
|
||||||
|
This is a space or comma delimited string that gives options for
|
||||||
|
exporting keys. Options can be prepended with a `no-' to give the
|
||||||
|
opposite meaning. The options are:
|
||||||
|
<variablelist>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>include-non-rfc</term>
|
||||||
|
<listitem><para>
|
||||||
|
Include non-RFC compliant keys in the export. Defaults to yes.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>include-local-sigs</term>
|
||||||
|
<listitem><para>
|
||||||
|
Allow exporting key signatures marked as "local". This is not
|
||||||
|
generally useful unless a shared keyring scheme is being used.
|
||||||
|
Defaults to no.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>include-attributes</term>
|
||||||
|
<listitem><para>
|
||||||
|
Include attribute user IDs (photo IDs) while exporting. This is
|
||||||
|
useful to export keys if they are going to be used by an OpenPGP
|
||||||
|
program that does not accept attribute user IDs. Defaults to yes.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>include-sensitive-revkeys</term>
|
||||||
|
<listitem><para>
|
||||||
|
Include designated revoker information that was marked as
|
||||||
|
"sensitive". Defaults to no.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
</variablelist>
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>--show-photos</term>
|
<term>--show-photos</term>
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
Causes --list-keys, --list-sigs, --list-public-keys, and
|
Causes --list-keys, --list-sigs, --list-public-keys,
|
||||||
--list-secret-keys to also display the photo ID attached to a key, if
|
--list-secret-keys, and verifying a signature to also display the
|
||||||
any.
|
photo ID attached to the key, if any.
|
||||||
See also --photo-viewer.
|
See also --photo-viewer.
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
@ -1057,6 +1131,15 @@ The default viewer is "xloadimage -fork -quiet -title 'KeyID 0x%k'
|
|||||||
stdin"
|
stdin"
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>--exec-path &ParmString;</term>
|
||||||
|
<listitem><para>
|
||||||
|
Sets a list of directories to search for photo viewers and keyserver
|
||||||
|
helpers. If not provided, keyserver helpers use the compiled-in
|
||||||
|
default directory, and photo viewers use the $PATH environment
|
||||||
|
variable.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>--show-keyring</term>
|
<term>--show-keyring</term>
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
@ -1427,7 +1510,10 @@ method will be part of an enhanced OpenPGP specification but GnuPG
|
|||||||
already uses it as a countermeasure against certain attacks. Old
|
already uses it as a countermeasure against certain attacks. Old
|
||||||
applications don't understand this new format, so this option may be
|
applications don't understand this new format, so this option may be
|
||||||
used to switch back to the old behaviour. Using this this option
|
used to switch back to the old behaviour. Using this this option
|
||||||
bears a security risk.
|
bears a security risk. Note that using this option only takes effect
|
||||||
|
when the secret key is encrypted - the simplest way to make this
|
||||||
|
happen is to change the passphrase on the key (even changing it to the
|
||||||
|
same value is acceptable).
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
|
||||||
@ -1617,8 +1703,9 @@ Resets the --pgp6 option.
|
|||||||
<term>--pgp7</term>
|
<term>--pgp7</term>
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
Set up all options to be as PGP 7 compliant as possible. This is
|
Set up all options to be as PGP 7 compliant as possible. This is
|
||||||
identical to --pgp6 except that the list of allowable ciphers is
|
identical to --pgp6 except that MDCs are not disabled, and the list of
|
||||||
expanded to add AES128, AES192, AES256, and TWOFISH.
|
allowable ciphers is expanded to add AES128, AES192, AES256, and
|
||||||
|
TWOFISH.
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -1792,6 +1879,11 @@ Suppress the warning about "using insecure memory".
|
|||||||
Suppress the warning about unsafe file permissions.
|
Suppress the warning about unsafe file permissions.
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>--no-mdc-warning</term>
|
||||||
|
<listitem><para>
|
||||||
|
Suppress the warning about missing MDC integrity protection.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>--no-armor</term>
|
<term>--no-armor</term>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user