PAR-Dist
view release on metacpan or search on metacpan
lib/PAR/Dist.pm view on Meta::CPAN
if (-f) {
$File::Find::prune++;
$files = 1;
}
}, $dir);
return $files;
}
=head2 sign_par
Digitally sign a PAR distribution using C<gpg> or B<Crypt::OpenPGP>,
via B<Module::Signature>.
=cut
sub sign_par {
my %args = &_args;
_verify_or_sign(%args, action => 'sign');
}
=head2 verify_par
Verify the digital signature of a PAR distribution using C<gpg> or
B<Crypt::OpenPGP>, via B<Module::Signature>.
Returns a boolean value indicating whether verification passed; C<$!>
is set to the return code of C<Module::Signature::verify>.
=cut
sub verify_par {
my %args = &_args;
$! = _verify_or_sign(%args, action => 'verify');
( run in 0.522 second using v1.01-cache-2.11-cpan-df04353d9ac )