Module::Signature - Module signature file manipulation |
Module::Signature - Module signature file manipulation
This document describes version 0.50 of Module::Signature, released August 21, 2005.
As a shell command:
% cpansign # verify an existing SIGNATURE, or # make a new one if none exists
% cpansign sign # make signature; overwrites existing one % cpansign -s # same thing
% cpansign verify # verify a signature % cpansign -v # same thing % cpansign -v --skip # ignore files in MANIFEST.SKIP
% cpansign help # display this documentation % cpansign -h # same thing
In programs:
use Module::Signature qw(sign verify SIGNATURE_OK); sign(); sign(overwrite => 1); # overwrites without asking
# see the CONSTANTS section below (verify() == SIGNATURE_OK) or die "failed!";
Module::Signature adds cryptographic authentications to CPAN distributions, via the special SIGNATURE file.
If you are a module user, all you have to do is to remember to run
cpansign -v
(or just cpansign
) before issuing perl Makefile.PL
or perl Build.PL
; that will ensure the distribution has not been
tampered with.
For module authors, you'd want to add the SIGNATURE file to your
MANIFEST, then type cpansign -s
before making a distribution.
You may also want to consider adding this code as t/0-signature.t:
#!/usr/bin/perl use strict; print "1..1\n";
if (!-s 'SIGNATURE') { print "ok 1 # skip No signature file found\n"; } elsif (!eval { require Module::Signature; 1 }) { print "ok 1 # skip ", "Next time around, consider install Module::Signature, ", "so you can verify the integrity of this distribution.\n"; } elsif (!eval { require Socket; Socket::inet_aton('pgp.mit.edu') }) { print "ok 1 # skip Cannot connect to the keyserver\n"; } else { (Module::Signature::verify() == Module::Signature::SIGNATURE_OK()) or print "not "; print "ok 1 # Valid signature\n"; }
__END__
Note that you'd want to keep your SIGNATURE file at 0 bytes (or
missing altogether) during development, so make test
would not fail;
that file should only be generated during the make dist
time; see
NOTES for how to do it automatically.
If you are already using Test::More for testing, a more straightforward version of t/0-signature.t can be found in the Module::Signature distribution.
Also, if you prefer a more full-fledged testing package, and are willing to inflict the dependency of Module::Build on your users, Iain Truskett's Test::Signature might be a better choice.
Please also see NOTES about MANIFEST.SKIP issues, especially if you are using Module::Build or writing your own MANIFEST.SKIP.
No package variables are exported by default.
SIGNATURE
.
gpg
, not Crypt::OpenPGP
).
May be set to a false value to prevent this module from
fetching public keys.
11371
.
3
.
1
.
Digest
module to make signature
files. Defaults to SHA1
, but may be changed to other ciphers
via the MODULE_SIGNATURE_CIPHER
environment variable if the SHA1
cipher is undesirable for the user.
The cipher specified in the SIGNATURE file's first entry will
be used to validate its integrity. For SHA1
, the user needs
to have any one of these four modules installed: Digest::SHA,
Digest::SHA1, Digest::SHA::PurePerl, or (currently nonexistent)
Digest::SHA1::PurePerl.
Module::Signature honors these environment variables:
These constants are not exported by default.
0E0
)0
)-1
)-2
)-3
)-4
)-5
)-6
)Digest
and Digest::*
modules.
make dist
Module::Install users should simply do this:
WriteAll( sign => 1 );
For ExtUtils::MakeMaker (version 6.18 or above), you may do this:
WriteMakefile( (MM->can('signature_target') ? (SIGN => 1) : ()), # ... original arguments ... );
Users of Module::Build may do this:
Module::Build->new( (sign => 1), # ... original arguments ... )->create_build_script;
(The following section is lifted from Iain Truskett's Test::Signature module, under the Perl license. Thanks, Iain!)
It is imperative that your MANIFEST and MANIFEST.SKIP files be
accurate and complete. If you are using ExtUtils::MakeMaker
and you
do not have a MANIFEST.SKIP file, then don't worry about the rest of
this. If you do have a MANIFEST.SKIP file, or you use
Module::Build
, you must read this.
Since the test is run at make test
time, the distribution has been
made. Thus your MANIFEST.SKIP file should have the entries listed
below.
If you're using ExtUtils::MakeMaker
, you should have, at least:
#defaults ^Makefile$ ^blib/ ^pm_to_blib ^blibdirs
These entries are part of the default set provided by
ExtUtils::Manifest
, which is ignored if you provide your own
MANIFEST.SKIP file.
If you are using Module::Build
, you should have two extra entries:
^Build$ ^_build/
If you don't have the correct entries, Module::Signature
will
complain that you have:
==> MISMATCHED content between MANIFEST and distribution files! <==
You should note this during normal development testing anyway.
the Digest manpage, the Digest::SHA manpage, the Digest::SHA1 manpage, the Digest::SHA::PurePerl manpage
the ExtUtils::Manifest manpage, the Crypt::OpenPGP manpage, the Test::Signature manpage
Autrijus Tang <autrijus@autrijus.org>
Copyright 2002, 2003, 2004, 2005 by Autrijus Tang <autrijus@autrijus.org>.
Parts of the documentation are copyrighted by Iain Truskett, 2002.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
Module::Signature - Module signature file manipulation |