1GnuPG::SubKey(3) User Contributed Perl Documentation GnuPG::SubKey(3)
2
3
4
6 GnuPG::SubKey - GnuPG Sub Key objects
7
9 # assumes a GnuPG::PublicKey object in $key
10 my @subkeys = $key->subkeys();
11
12 # now GnuPG::SubKey objects are in @subkeys
13
15 GnuPG::SubKey objects are generally instantiated through various
16 methods of GnuPG::Interface. They embody various aspects of a GnuPG
17 sub key.
18
19 This package inherits data members and object methods from GnuPG::Key,
20 which are not described here, but rather in GnuPG::Key.
21
23 validity
24 A scalar holding the value GnuPG reports for the trust of
25 authenticity (a.k.a.) validity of a key. See GnuPG's DETAILS file
26 for details.
27
28 local_id
29 GnuPG's local id for the key.
30
31 owner_trust
32 The scalar value GnuPG reports as the ownertrust for this key. See
33 GnuPG's DETAILS file for details.
34
35 signature
36 A GnuPG::Signature object holding the representation of the
37 signature on this key.
38
40 GnuPG::Key, GnuPG::Signature,
41
42
43
44perl v5.12.0 2009-07-13 GnuPG::SubKey(3)