1GnuPG::Signature(3) User Contributed Perl Documentation GnuPG::Signature(3)
2
3
4
6 GnuPG::Signature - GnuPG Key Signature Objects
7
9 # assumes a GnuPG::SubKey object in $key
10 my $signing_id = $key->signature->hex_id();
11
13 GnuPG::Signature objects are generally not instantiated on their own,
14 but rather as part of GnuPG::Key objects. They embody various aspects
15 of a GnuPG signature on a key.
16
18 new( %initialization_args )
19 This methods creates a new object. The optional arguments are
20 initialization of data members.
21
23 algo_num
24 The number of the algorithm used for the signature.
25
26 hex_id
27 The hex id of the signing key.
28
29 user_id_string
30 The first user id string on the key that made the signature. This
31 may not be defined if the signing key is not on the local keyring.
32
33 date_string
34 The formatted date the signature was performed on.
35
37perl v5.12.0 2009-07-13 GnuPG::Signature(3)