The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Acme::PGPSign - Perl extension for signed scripts

SYNOPSIS

  use Acme::PGPSign (KeyID => 'abcdef');

  print "Hello World\n";
  

ABSTRACT

The first time you run a program under use Acme::PGPSign, the module converts your program to a PGP signed code segment. The code continues to work exactly as it did before, but now it looks like this:

use Acme::PGPSign; -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

print "Hello World\n"; -----BEGIN PGP SIGNATURE----- Version: Crypt::OpenPGP 1.03

iQBGBAERAgAGBQI/HCQpAAoJEKWJ3MaRjamws9UAoKSTyel1JNOj9erCMjmMlI9s wc5oAJ9UuzLk2J1WBnzZR4+AwgBiIvi6xw== =PdE4 -----END PGP SIGNATURE-----

DESCRIPTION

In order for use Acme::PGPSign to work you need to be able to sign the code with your keyring.

EXPORT

None

DEPENDENCIES

This module requires:

  Crypt::OpenPGP

KNOWN BUGS

Currently only supports signing of scripts and not modules.

SEE ALSO

    Crypt::OpenPGP

AUTHOR

Patrick Mulvany, <paddy@firedrake.org<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2003 Patrick Mulvany All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the terms of the Perl Artistic License (see http://www.perl.com/perl/misc/Artistic.html)