r48825 - in /branches/upstream/libcrypt-rijndael-perl/current: Changes META.yml Makefile.PL README Rijndael.pm Rijndael.xs t/test_manifest

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Dec 16 01:40:31 UTC 2009


Author: jawnsy-guest
Date: Wed Dec 16 01:40:26 2009
New Revision: 48825

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

Modified:
    branches/upstream/libcrypt-rijndael-perl/current/Changes
    branches/upstream/libcrypt-rijndael-perl/current/META.yml
    branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL
    branches/upstream/libcrypt-rijndael-perl/current/README
    branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm
    branches/upstream/libcrypt-rijndael-perl/current/Rijndael.xs
    branches/upstream/libcrypt-rijndael-perl/current/t/test_manifest

Modified: branches/upstream/libcrypt-rijndael-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/Changes?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Changes (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Changes Wed Dec 16 01:40:26 2009
@@ -1,3 +1,16 @@
+
+1.08 - Wed Dec  9 18:20:22 2009
+	* Promoting development release to full release.
+	* This release mainly clarifies the licensing.
+
+1.07_02 - Tue Nov  4 02:21:27 2008
+	* RT #40511: Give a better warning when you try to use tainted
+	data as an initialization vector. If anyone wants to use 
+	tainted data, they can patch the code to accept it.
+
+1.07_01 - Tue Oct 14 08:59:58 2008
+	* Clarify that these files are under the Lesser GNU Public License
+	(also known as the Library GNU Public License).
 
 1.07 - Fri Aug 15 16:53:36 2008
 	* Fixed the odd character problems in some of the files

Modified: branches/upstream/libcrypt-rijndael-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/META.yml?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/META.yml (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/META.yml Wed Dec 16 01:40:26 2009
@@ -1,15 +1,23 @@
 --- #YAML:1.0
-name:                Crypt-Rijndael
-version:             1.07
-abstract:            Crypt::CBC compliant Rijndael encryption module
-license:             gpl
-author:              
+name:               Crypt-Rijndael
+version:            1.08
+abstract:           Crypt::CBC compliant Rijndael encryption module
+author:
     - Rafael R. Sevilla (maintained by brian d foy <bdfoy at cpan.org>)
-generated_by:        ExtUtils::MakeMaker version 6.44
-distribution_type:   module
-requires:     
-    Test::Manifest:                1.14
-    Test::More:                    0
+license:            gpl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Test::Manifest:  1.14
+    Test::More:      0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL Wed Dec 16 01:40:26 2009
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 2408 2007-11-20 13:54:31Z comdog $
+# $Id$
 
 require 5.006;
 

Modified: branches/upstream/libcrypt-rijndael-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/README?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/README (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/README Wed Dec 16 01:40:26 2009
@@ -77,7 +77,12 @@
     and has been selected as the US Government's Advanced Encryption
     Standard.
 
+SOURCE
+    This code is in Github:
+
+            git://github.com/briandfoy/crypt-rijndael.git
+
 LICENSE
-    This software is licensed under the GNU Public License. See the included
-    COPYING file for details.
+    This software is licensed under the Lesser GNU Public License. See the
+    included COPYING file for details.
 

Modified: branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm Wed Dec 16 01:40:26 2009
@@ -34,7 +34,7 @@
 
 require DynaLoader;
 
-$VERSION = '1.07';
+$VERSION = '1.08';
 @ISA = qw/DynaLoader/;
 
 bootstrap Crypt::Rijndael $VERSION;
@@ -118,9 +118,15 @@
 The Rijndael Algorithm was developed by Vincent Rijmen and Joan Daemen,
 and has been selected as the US Government's Advanced Encryption Standard.
 
+=head1 SOURCE
+
+This code is in Github:
+
+	git://github.com/briandfoy/crypt-rijndael.git
+	
 =head1 LICENSE
 
-This software is licensed under the GNU Public License. See the included
+This software is licensed under the Lesser GNU Public License. See the included
 COPYING file for details.
 
 =cut

Modified: branches/upstream/libcrypt-rijndael-perl/current/Rijndael.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/Rijndael.xs?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Rijndael.xs (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Rijndael.xs Wed Dec 16 01:40:26 2009
@@ -1,3 +1,23 @@
+/* rijndael - An implementation of the Rijndael cipher.
+ * Copyright (C) 2000, 2001 Rafael R. Sevilla <sevillar at team.ph.inter.net>
+ *
+ * Currently maintained by brian d foy, <bdfoy at cpan.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the Free
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"
@@ -112,7 +132,7 @@
           STRLEN keysize;
           
           if (!SvPOK (key))
-            croak("key must be a string scalar");
+            croak("key must be an untainted string scalar");
 
           keysize = SvCUR(key);
 

Modified: branches/upstream/libcrypt-rijndael-perl/current/t/test_manifest
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/t/test_manifest?rev=48825&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/t/test_manifest (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/t/test_manifest Wed Dec 16 01:40:26 2009
@@ -1,4 +1,4 @@
-# $Id: test_manifest 2305 2007-09-12 20:29:54Z comdog $
+# $Id$
 00_load.t
 pod.t
 pod_coverage.t




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