r18240 - in /branches/upstream/libcrypt-cbc-perl/current: CBC.pm Changes META.yml t/onezeropadding.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Tue Apr 1 14:42:20 UTC 2008


Author: gregoa-guest
Date: Tue Apr  1 14:42:19 2008
New Revision: 18240

URL: http://svn.debian.org/wsvn/?sc=1&rev=18240
Log:
[svn-upgrade] Integrating new upstream version, libcrypt-cbc-perl (2.28)

Modified:
    branches/upstream/libcrypt-cbc-perl/current/CBC.pm
    branches/upstream/libcrypt-cbc-perl/current/Changes
    branches/upstream/libcrypt-cbc-perl/current/META.yml
    branches/upstream/libcrypt-cbc-perl/current/t/onezeropadding.t

Modified: branches/upstream/libcrypt-cbc-perl/current/CBC.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-cbc-perl/current/CBC.pm?rev=18240&op=diff
==============================================================================
--- branches/upstream/libcrypt-cbc-perl/current/CBC.pm (original)
+++ branches/upstream/libcrypt-cbc-perl/current/CBC.pm Tue Apr  1 14:42:19 2008
@@ -4,7 +4,7 @@
 use Carp;
 use strict;
 use vars qw($VERSION);
-$VERSION = '2.27';
+$VERSION = '2.28';
 
 use constant RANDOM_DEVICE => '/dev/urandom';
 

Modified: branches/upstream/libcrypt-cbc-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-cbc-perl/current/Changes?rev=18240&op=diff
==============================================================================
--- branches/upstream/libcrypt-cbc-perl/current/Changes (original)
+++ branches/upstream/libcrypt-cbc-perl/current/Changes Tue Apr  1 14:42:19 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension Crypt::CBC.
+2.28	 Mon Mar 31 10:46:25 EDT 2008
+	 - Fixed bug in onesandzeroes test that causes it to fail with Rijndael module
+ 	 is not installed.
+
 2.27	 Fri Mar 28 10:13:32 EDT 2008
  	 - When taint mode is turned on and user is using a tainted key, explicitly check
 	   tainting of key in order to avoid "cryptic" failure messages from some crypt

Modified: branches/upstream/libcrypt-cbc-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-cbc-perl/current/META.yml?rev=18240&op=diff
==============================================================================
--- branches/upstream/libcrypt-cbc-perl/current/META.yml (original)
+++ branches/upstream/libcrypt-cbc-perl/current/META.yml Tue Apr  1 14:42:19 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Crypt-CBC
-version:      2.27
+version:      2.28
 version_from: CBC.pm
 installdirs:  site
 requires:

Modified: branches/upstream/libcrypt-cbc-perl/current/t/onezeropadding.t
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-cbc-perl/current/t/onezeropadding.t?rev=18240&op=diff
==============================================================================
--- branches/upstream/libcrypt-cbc-perl/current/t/onezeropadding.t (original)
+++ branches/upstream/libcrypt-cbc-perl/current/t/onezeropadding.t Tue Apr  1 14:42:19 2008
@@ -32,11 +32,13 @@
 $tnum = 0;
 
 eval "use Crypt::CBC";
+print STDERR "using Crypt\:\:$in[0] for testing\n";
 test(\$tnum,!$@,"Couldn't load module");
+
 
 my $cipher = Crypt::CBC->new(
 			     -key    => 'aaab',
-			     -cipher => 'Rijndael',
+			     -cipher => $in[0],
 			     -padding => "oneandzeroes",
 );
 my $string = 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX';




More information about the Pkg-perl-cvs-commits mailing list