.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man v6.0.2 (Pod::Simple 3.45) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" .\" Required to disable full justification in groff 1.23.0. .if n .ds AD l .\" ======================================================================== .\" .IX Title "GnuPG::Revoker 3" .TH GnuPG::Revoker 3 2026-08-30 "perl v5.42.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME GnuPG::Revoker \- GnuPG Key Revoker Objects .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 2 \& # assumes a GnuPG::PrimaryKey object in $key \& my $revokerfpr = $key\->revokers\->[0]\->fingerprint(); .Ve .SH DESCRIPTION .IX Header "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. .SH "OBJECT METHODS" .IX Header "OBJECT METHODS" .ie n .IP "new( \fR\fI%initialization_args\fR\fI\fR )" 4 .el .IP "new( \fR\f(CI%initialization_args\fR\fI\fR )" 4 .IX Item "new( %initialization_args )" This methods creates a new object. The optional arguments are initialization of data members. .IP \fBis_sensitive()\fR 4 .IX Item "is_sensitive()" Returns 0 if the revoker information can be freely distributed. If this is non\-zero, the information should be treated as "sensitive". .Sp Please see http://tools.ietf.org/html/rfc4880#section\-5.2.3.15 for more explanation. .ie n .IP "compare( \fR\fI$other\fR\fI\fR, \fI\fR\fI$deep\fR\fI\fR )" 4 .el .IP "compare( \fR\f(CI$other\fR\fI\fR, \fI\fR\f(CI$deep\fR\fI\fR )" 4 .IX Item "compare( $other, $deep )" Returns non\-zero only when this designated revoker is identical to the other GnuPG::Revoker. If \f(CW$deep\fR is present and non\-zero, the revokers\*(Aq signatures will also be compared. .SH "OBJECT DATA MEMBERS" .IX Header "OBJECT DATA MEMBERS" .IP fingerprint 4 .IX Item "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). .IP algo_num 4 .IX Item "algo_num" The numeric identifier of the algorithm of the revoker\*(Aqs key. .IP signatures 4 .IX Item "signatures" A list of GnuPG::Signature objects which cryptographically bind the designated revoker to the primary key. If the material was instantiated using the *\fB_with_sigs()\fR 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\*(Aqs key). .Sp Note that designated revoker certifications are themselves irrevocable, so there is no analogous list of revocations in a GnuPG::Revoker object. .SH "SEE ALSO" .IX Header "SEE ALSO" GnuPG::Interface, GnuPG::Fingerprint, GnuPG::Key, GnuPG::Signature,