1GnuPG::Revoker(3) User Contributed Perl Documentation GnuPG::Revoker(3)
2
3
4
6 GnuPG::Revoker - GnuPG Key Revoker Objects
7
9 # assumes a GnuPG::PrimaryKey object in $key
10 my $revokerfpr = $key->revokers->[0]->fingerprint();
11
13 GnuPG::Revoker objects are generally not instantiated on their own, but
14 rather as part of GnuPG::Key objects. They represent a statement that
15 another key is designated to revoke certifications made by the key in
16 question.
17
19 new( %initialization_args )
20 This methods creates a new object. The optional arguments are
21 initialization of data members.
22
23 is_sensitive()
24 Returns 0 if the revoker information can be freely distributed. If
25 this is non-zero, the information should be treated as "sensitive".
26
27 Please see http://tools.ietf.org/html/rfc4880#section-5.2.3.15 for
28 more explanation.
29
30 compare( $other, $deep )
31 Returns non-zero only when this designated revoker is identical to
32 the other GnuPG::Revoker. If $deep is present and non-zero, the
33 revokers' signatures will also be compared.
34
36 fingerprint
37 A GnuPG::Fingerprint object indicating the fingerprint of the
38 specified revoking key. (Note that this is *not* the fingerprint
39 of the key whose signatures can be revoked by this revoker).
40
41 algo_num
42 The numeric identifier of the algorithm of the revoker's key.
43
44 signatures
45 A list of GnuPG::Signature objects which cryptographically bind the
46 designated revoker to the primary key. If the material was
47 instantiated using the *_with_sigs() functions from
48 GnuPG::Interface, then a valid revoker designation should have a
49 valid signature associated with it from the relevant key doing the
50 designation (not from the revoker's key).
51
52 Note that designated revoker certifications are themselves
53 irrevocable, so there is no analogous list of revocations in a
54 GnuPG::Revoker object.
55
57 GnuPG::Interface, GnuPG::Fingerprint, GnuPG::Key, GnuPG::Signature,
58 <http://tools.ietf.org/html/rfc4880#section-5.2.3.15>
59
60
61
62perl v5.32.1 2021-01-31 GnuPG::Revoker(3)