Egg-Plugin-Crypt-CBC
view release on metacpan or search on metacpan
author:
- 'Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>'
abstract: lib/Egg/Plugin/Crypt/CBC.pm
license: perl
resources:
license: http://dev.perl.org/licenses/
requires:
Crypt::Blowfish: 2.1
Crypt::CBC: 2.22
Crypt::Camellia: 2.01
Crypt::DES: 2.05
Crypt::Rabbit: 1
Crypt::Twofish2: 1.01
Egg::Release: 2
Test::More: 0
Test::Perl::Critic: 0
Test::Pod: 0
Test::Pod::Coverage: 0
provides:
Egg::Plugin::Crypt::CBC:
file: lib/Egg/Plugin/Crypt/CBC.pm
Makefile.PL view on Meta::CPAN
name 'Egg-Plugin-Crypt-CBC';
all_from 'lib/Egg/Plugin/Crypt/CBC.pm';
version_from 'lib/Egg/Plugin/Crypt/CBC.pm';
abstract_from 'lib/Egg/Plugin/Crypt/CBC.pm';
author 'Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>';
license 'perl';
requires 'Egg::Release' => 2.00;
requires 'Crypt::CBC' => 2.22;
requires 'Crypt::Blowfish' => 2.10;
requires 'Crypt::DES' => 2.05;
requires 'Crypt::Camellia' => 2.01;
requires 'Crypt::Rabbit' => 1.00;
requires 'Crypt::Twofish2' => 1.01;
build_requires 'Test::More';
build_requires 'Test::Pod';
build_requires 'Test::Perl::Critic';
build_requires 'Test::Pod::Coverage';
use_test_base;
use Test::More;
use lib qw( ./lib ../lib );
use Egg::Helper;
test();
sub test {
my $ciper= Crypt::Blowfish->require ? 'Blowfish'
: Crypt::DES->require ? 'DES'
: Crypt::Camellia->require ? 'Camellia'
: Crypt::Rabbit->require ? 'Rabbit'
: Crypt::Twofish2->require ? 'Twofish2'
: return do {
plan skip_all=> "The Ciper module is not installed.";
};
plan tests=> 10;
ok my $e= Egg::Helper->run( Vtest => {
( run in 0.244 second using v1.01-cache-2.11-cpan-9a3d99fc6dc )