first commit

This commit is contained in:
TLINDEN
2012-07-20 12:58:07 +02:00
commit 5c28e1f954
12 changed files with 2298 additions and 0 deletions

22
Makefile.PL Normal file
View File

@@ -0,0 +1,22 @@
require 5.004;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Crypt::PWSafe3',
'VERSION_FROM' => 'lib/Crypt/PWSafe3.pm',
'PREREQ_PM' => { 'Digest::HMAC' => 1.00,
'Digest::SHA' => 1.00,
'Crypt::CBC' => 2.30,
'Crypt::ECB' => 1.45,
'Crypt::Twofish' => 2.14,
'Crypt::Random' => 1.25,
'Data::UUID' => 1.217,
'Shell' => 0.5,
},
'AUTHOR' => 'Thomas Linden <tlinden@cpan.org>',
'clean' => {
FILES => 't/*.out *~ */*~ */*/*~ */*/*/*~'
},
);