From: <iro...@us...> - 2003-02-24 02:13:43
|
Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA In directory sc8-pr-cvs1:/tmp/cvs-serv8411 Modified Files: Changes MANIFEST RSA.pm Log Message: preparing for release Index: Changes =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/Changes,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Changes 7 Jan 2003 03:57:26 -0000 1.10 --- Changes 24 Feb 2003 02:13:40 -0000 1.11 *************** *** 1,4 **** --- 1,10 ---- Revision history for Perl extension Crypt::OpenSSL::RSA. + 0.18 Sun Feb 23 2003 20:44:35 + - Add two new methods, new_key_from_parameters and + get_key_parameters, which, working with + Crypt::OpenSSL::Bignum, allow working directly with the + paramaters of an rsa key. + 0.17 Mon Jan 06 2003 22:43:31 - Workaround for gcc 3.2 compile problems: *************** *** 27,40 **** 0.13 Thu Mar 21 00:10:30 ! - Incorporating patch from Matthias Bauer ! <ba...@im...>, which provides ! signing and verification, as well as uses OpenSSL's internal ! error reporting system. This patch also fixes a bug with the ! RSA_NO_PADDING_MODE. Thanks, Matthias! ! - Deprecate set_padding_mode in favor of use_xxx_padding. ! - Rather than returning true on success, false on failure, just ! croak when there are problems. ! - Plug memory leaks. ! - Fix my email address (it's cpan.org, not cpan.com) 0.12 Thu Sep 06 22:44:17 --- 33,46 ---- 0.13 Thu Mar 21 00:10:30 ! - Incorporating patch from Matthias Bauer ! <ba...@im...>, which provides ! signing and verification, as well as uses OpenSSL's internal ! error reporting system. This patch also fixes a bug with the ! RSA_NO_PADDING_MODE. Thanks, Matthias! ! - Deprecate set_padding_mode in favor of use_xxx_padding. ! - Rather than returning true on success, false on failure, just ! croak when there are problems. ! - Plug memory leaks. ! - Fix my email address (it's cpan.org, not cpan.com) 0.12 Thu Sep 06 22:44:17 *************** *** 45,49 **** 0.11 Tue Apr 10 22:45:31 ! - Fixing bug in test.pl. 0.10 Mon Apr 09 18:25:41 --- 51,55 ---- 0.11 Tue Apr 10 22:45:31 ! - Fixing bug in test.pl. 0.10 Mon Apr 09 18:25:41 *************** *** 70,72 **** 0.01 Wed Feb 14 11:21:42 2001 ! - original version; created by h2xs 1.19 --- 76,78 ---- 0.01 Wed Feb 14 11:21:42 2001 ! - original version; created by h2xs 1.19 Index: MANIFEST =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/MANIFEST,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MANIFEST 7 Jan 2003 03:57:26 -0000 1.4 --- MANIFEST 24 Feb 2003 02:13:40 -0000 1.5 *************** *** 5,8 **** --- 5,10 ---- RSA.xs README + typemap t/legacy.t t/rsa.t + t/bignum.t Index: RSA.pm =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/RSA.pm,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** RSA.pm 24 Feb 2003 02:01:47 -0000 1.22 --- RSA.pm 24 Feb 2003 02:13:40 -0000 1.23 *************** *** 16,20 **** $RSA_PKCS1_OAEP_PADDING ); ! $VERSION = '0.17'; bootstrap Crypt::OpenSSL::RSA $VERSION; --- 16,20 ---- $RSA_PKCS1_OAEP_PADDING ); ! $VERSION = '0.18'; bootstrap Crypt::OpenSSL::RSA $VERSION; |