Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gnupg::revoker(3pm) [debian man page]

GnuPG::Revoker(3pm)					User Contributed Perl Documentation				       GnuPG::Revoker(3pm)

NAME
GnuPG::Revoker - GnuPG Key Revoker Objects SYNOPSIS
# assumes a GnuPG::PrimaryKey object in $key my $revokerfpr = $key->revokers->[0]->fingerprint(); DESCRIPTION
GnuPG::Revoker objects are generally not instantiated on their own, but rather as part of GnuPG::Key objects. They represent a statement that another key is designated to revoke certifications made by the key in question. OBJECT METHODS
new( %initialization_args ) This methods creates a new object. The optional arguments are initialization of data members. is_sensitive() Returns 0 if the revoker information can be freely distributed. If this is non-zero, the information should be treated as "sensitive". Please see http://tools.ietf.org/html/rfc4880#section-5.2.3.15 for more explanation. compare( $other, $deep ) Returns non-zero only when this designated revoker is identical to the other GnuPG::Revoker. If $deep is present and non-zero, the revokers' signatures will also be compared. OBJECT DATA MEMBERS
fingerprint A GnuPG::Fingerprint object indicating the fingerprint of the specified revoking key. (Note that this is *not* the fingerprint of the key whose signatures can be revoked by this revoker). algo_num The numeric identifier of the algorithm of the revoker's key. signatures A list of GnuPG::Signature objects which cryptographically bind the designated revoker to the primary key. If the material was instantiated using the *_with_sigs() functions from GnuPG::Interface, then a valid revoker designation should have a valid signature associated with it from the relevant key doing the designation (not from the revoker's key). Note that designated revoker certifications are themselves irrevocable, so there is no analogous list of revocations in a GnuPG::Revoker object. SEE ALSO
GnuPG::Interface, GnuPG::Fingerprint, GnuPG::Key, GnuPG::Signature, http://tools.ietf.org/html/rfc4880#section-5.2.3.15 <http://tools.ietf.org/html/rfc4880#section-5.2.3.15> perl v5.12.4 2010-06-07 GnuPG::Revoker(3pm)

Check Out this Related Man Page

SIG2DOT(1)						      General Commands Manual							SIG2DOT(1)

NAME
sig2dot - creates a .dot file from a GPG signature listing SYNOPSIS
sig2dot [OPTIONS] < input-file > output-file DESCRIPTION
This manual page documents briefly the sig2dot command. Sig2dot parses the output of "gpg --list-sigs" and produces a .dot file that can be used as input to a graphing program. OPTIONS
sig2dot accepts the following options: -b Black and white / do not colorize. -d <date> Render graph as it appeared on <date> (ignores more recent signatures). Date must be in the format "YYYY-MM-DD". Will also ignore keys that have since been revoked. -s <html-file-name> Produces a sory HTML statistics file with the number of signatures per node. -a Graph all keys, even if they do not have a signature -r <key-revoked-string> Sets the text for the key-revoked string used by GnuPG. The default is what is used in the English version. This parameter can be set for versions of GnuPG localized to other languages. Default: "[revoked". -t <title> Sets the title for the graph generated. Default: "Keyring Statistics". -u <user-not-found-string> Sets the text for the user-not-found string used by GnuPG. The default is what is used in the English version. This parame- ter can be set for versions of GnuPG localized to other languages. Default: "[user id not found]". -q Be quiet. -h Print help and exit. -v Print version and exit. EXAMPLE
gpg --list-sigs | sig2dot > sigs.dot springgraph < sigs.dot > sigs.png SEE ALSO
springgraph(1) gnupg(1) AUTHORS
Darxus@ChaosReigns.com with modifications by Kevin Rosenberg. Versions 0.35 and later are by Christoph Berg <cb@df7cb.de>. This manual page was written by Kevin M. Rosenberg <kmr@debian.org>, for the Debian GNU/Linux system (but may be used by others). May 31, 2006 SIG2DOT(1)
Man Page