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 * DEPRECATED*
37
38 A GnuPG::Signature object holding the representation of the
39 signature on this key. Please use signatures (see GnuPG::Key)
40 instead of signature. Using signature, you will get an arbitrary
41 signature from the set of available signatures.
42
44 GnuPG::Key, GnuPG::Signature,
45
46
47
48perl v5.30.1 2020-01-30 GnuPG::SubKey(3)