Crypt-Camellia
view release on metacpan or search on metacpan
#!/usr/local/bin/perl
#
# $Id: 01-CBC.t,v 0.1 2006/07/21 06:50:53 oyama Exp oyama $
#
# Shamelessly Stolen from Crypt::CBC t/Blowfish.t -- dankogai
#
use lib '..','../blib/lib','.','./blib/lib';
eval "use Crypt::CBC";
if ($@) {
print "1..0 # Skipped: Crypt::CBC not installed\n";
exit;
}
print "1..33\n";
sub test {
local($^W) = 0;
my($num, $true,$msg) = @_;
print($true ? "ok $num\n" : "not ok $num $msg\n");
}
$test_data = <<END;
Mary had a little lamb,
Its fleece was black as coal,
And everywere that Mary went,
That lamb would dig a hole.
END
;
eval "use Crypt::CBC";
test(1,!$@,"Couldn't load module");
if ($Crypt::CBC::VERSION <= 2.13) {
$i = Crypt::CBC->new({key=>'secret', cipher=>'Camellia'});
}
else {
$i = Crypt::CBC->new(-key=>'secret',-cipher=>'Camellia');
}
test(2,$i,"Couldn't create new object");
test(3,$c = $i->encrypt($test_data),"Couldn't encrypt");
test(4,$p = $i->decrypt($c),"Couldn't decrypt");
test(5,$p eq $test_data,"Decrypted ciphertext doesn't match plaintext");
# now try various truncations of the whole
for (my $c=1;$c<=7;$c++) {
substr($test_data,-$c) = ''; # truncate
test(5+$c,$i->decrypt($i->encrypt($test_data)) eq $test_data);
}
# now try various short strings
for (my $c=0;$c<=18;$c++) {
$test_data = 'i' x $c;
test (13+$c,$i->decrypt($i->encrypt($test_data)) eq $test_data);
}
# make sure that strings that end in spaces or nulls are treated correctly
$test_data = "This string ends in a null\0";
test (32,$i->decrypt($i->encrypt($test_data)) eq $test_data);
$test_data = "This string ends in some spaces ";
test (33,$i->decrypt($i->encrypt($test_data)) eq $test_data);
( run in 1.208 second using v1.01-cache-2.11-cpan-e1769b4cff6 )