| GnuPG-Interface documentation | Contained in the GnuPG-Interface distribution. |
GnuPG::PublicKey - GnuPG Public Key Objects
# assumes a GnuPG::Interface object in $gnupg my @keys = $gnupg->get_public_keys( 'ftobin' ); # now GnuPG::PublicKey objects are in @keys
GnuPG::PublicKey objects are generally instantiated through various methods of GnuPG::Interface. They embody various aspects of a GnuPG public key.
This package inherits data members and object methods from GnuPG::PrimaryKey, which is not described here, but rather in GnuPG::PrimaryKey.
Currently, this package is functionally no different from GnuPG::PrimaryKey.
| GnuPG-Interface documentation | Contained in the GnuPG-Interface distribution. |
# PublicKey.pm # - providing an object-oriented approach to GnuPG public 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: PublicKey.pm,v 1.9 2001/09/14 12:34:36 ftobin Exp $ # package GnuPG::PublicKey; use Any::Moose; BEGIN { extends qw( GnuPG::PrimaryKey ) } __PACKAGE__->meta->make_immutable; 1; __END__