| GnuPG-Interface documentation | Contained in the GnuPG-Interface distribution. |
GnuPG::SubKey - GnuPG Sub Key objects
# assumes a GnuPG::PublicKey object in $key my @subkeys = $key->subkeys(); # now GnuPG::SubKey objects are in @subkeys
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.
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.
GnuPG's local id for the key.
The scalar value GnuPG reports as the ownertrust for this key. See GnuPG's DETAILS file for details.
* DEPRECATED*
A GnuPG::Signature object holding the representation of the signature on this key. Please use signatures (see GnuPG::Key) instead of signature. Using signature, you will get an arbitrary signature from the set of available signatures.
| GnuPG-Interface documentation | Contained in the GnuPG-Interface distribution. |
# SubKey.pm # - providing an object-oriented approach to GnuPG sub keys # # Copyright (C) 2000 Frank J. Tobin <ftobin@cpan.org> # # This module is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # $Id: SubKey.pm,v 1.9 2001/09/14 12:34:36 ftobin Exp $ # package GnuPG::SubKey; use Any::Moose; use Carp; BEGIN { extends qw( GnuPG::Key ) } has [qw( validity owner_trust local_id )] => ( isa => 'Any', is => 'rw', ); # DEPRECATED! # return the last signature, if present. Or push in a new signature, # if one is supplied. sub signature { my $self = shift; my $argcount = @_; if ($argcount) { @{$self->signatures} = (); $self->push_signatures(@_); } else { my $sigcount = @{$self->signatures}; if ($sigcount) { return $self->signatures->[$sigcount-1]; } else { return undef; } } } __PACKAGE__->meta->make_immutable; 1; __END__