home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / perl5 / GnuPG / PublicKey.pm < prev    next >
Encoding:
Perl POD Document  |  2010-05-01  |  1.3 KB  |  56 lines

  1. #  PublicKey.pm
  2. #    - providing an object-oriented approach to GnuPG public keys
  3. #
  4. #  Copyright (C) 2000 Frank J. Tobin <ftobin@cpan.org>
  5. #
  6. #  This module is free software; you can redistribute it and/or modify it
  7. #  under the same terms as Perl itself.
  8. #
  9. #  This program is distributed in the hope that it will be useful,
  10. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. #
  13. #  $Id: PublicKey.pm,v 1.9 2001/09/14 12:34:36 ftobin Exp $
  14. #
  15.  
  16. package GnuPG::PublicKey;
  17. use Any::Moose;
  18.  
  19. BEGIN { extends qw( GnuPG::PrimaryKey ) }
  20.  
  21. __PACKAGE__->meta->make_immutable;
  22.  
  23. 1;
  24.  
  25. __END__
  26.  
  27. =head1 NAME
  28.  
  29. GnuPG::PublicKey - GnuPG Public Key Objects
  30.  
  31. =head1 SYNOPSIS
  32.  
  33.   # assumes a GnuPG::Interface object in $gnupg
  34.   my @keys = $gnupg->get_public_keys( 'ftobin' );
  35.  
  36.   # now GnuPG::PublicKey objects are in @keys
  37.  
  38. =head1 DESCRIPTION
  39.  
  40. GnuPG::PublicKey objects are generally instantiated
  41. through various methods of GnuPG::Interface.
  42. They embody various aspects of a GnuPG public key.
  43.  
  44. This package inherits data members and object methods
  45. from GnuPG::PrimaryKey, which is not described here, but rather
  46. in L<GnuPG::PrimaryKey>.
  47.  
  48. Currently, this package is functionally no different
  49. from GnuPG::PrimaryKey.
  50.  
  51. =head1 SEE ALSO
  52.  
  53. L<GnuPG::PrimaryKey>,
  54.  
  55. =cut
  56.