NAME
GnuPG::SubKey - GnuPG Sub Key objects
SYNOPSIS
# assumes a GnuPG::PublicKey object in $key
my @subkeys = $key->subkeys();
# now GnuPG::SubKey objects are in @subkeys
DESCRIPTION
GnuPG::SubKey objects are generally instantiated through various methods of GnuPG::Interface. They embody various aspects of a GnuPG sub key.
This package inherits data members and object methods from GnuPG::Key, which are not described here, but rather in GnuPG::Key.
OBJECT DATA MEMBERS
Note that these data members are interacted with via object methods created using the methods described in "get_set" in Class::MethodMaker, "object" in Class::MethodMaker, or "list" in Class::MethodMaker. Please read there for more information.
- validity
-
A scalar holding the value GnuPG reports for the trust of authenticity (a.k.a.) validity of a key. See GnuPG's DETAILS file for details.
- local_id
-
GnuPG's local id for the key.
- owner_trust
-
The scalar value GnuPG reports as the ownertrust for this key. See GnuPG's DETAILS file for details.
- signature
-
A GnuPG::Signature object holding the representation of the signature on this key.
SEE ALSO
See also GnuPG::Key, GnuPG::Signature, and Class::MethodMaker.