Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11236/OpenSSL/RSA
Modified Files:
Changes README RSA.pm
Log Message:
prepare for release 0.22
Index: README
===================================================================
RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/README,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** README 19 Feb 2004 16:10:33 -0000 1.13
--- README 15 Nov 2005 04:26:01 -0000 1.14
***************
*** 20,30 ****
There is no Crypt::CBC support.
! (Reported by Max Baker <ma...@wa...>) For making under Redhat 8
! or 9 you may need to supply the include path to the kerberos header
! files when running make
!
! make C_INCLUDE_PATH=/usr/kerberos/include
!
! Copyright (c) 2001-2004 Ian Robertson. Crypt::OpenSSL::RSA is free
software; you may redistribute it and/or modify it under the same
terms as Perl itself.
--- 20,24 ----
There is no Crypt::CBC support.
! Copyright (c) 2001-2005 Ian Robertson. Crypt::OpenSSL::RSA is free
software; you may redistribute it and/or modify it under the same
terms as Perl itself.
Index: Changes
===================================================================
RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/Changes,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Changes 16 Feb 2004 02:11:14 -0000 1.14
--- Changes 15 Nov 2005 04:26:01 -0000 1.15
***************
*** 1,4 ****
--- 1,24 ----
Revision history for Perl extension Crypt::OpenSSL::RSA.
+ 0.22 Mon Nov 15 2005 21:13:20
+ - Add public_decrypt, private_encrypt methods, contributed
+ by Paul G. Weiss <pa...@we...>
+ - Some changes to help builds on Redhat9
+ - Remove deprecated methods:
+ * the no-arg new constructor - use new_from_public_key,
+ new_from_private_key or Crypt::OpenSSL::RSA->generate_key instead
+ * load_public_key - use new_from_public_key
+ * load_private_key - use new_from_private_key
+ * generate_key as an instance method - use it as a class constructor
+ method instead.
+ * set_padding_mode - use use_no_padding, use_pkcs1_padding,
+ use_pkcs1_oaep_padding, or use_sslv23_padding instead.
+ * get_padding_mode
+ - Eliminate all(most all) memory leaks.
+ - fix email address
+ - Stop returning true from methods just to indicate success.
+ - Change default public exponent from 65535 to 65537
+
+
0.21 Sun Feb 15 2004 21:13:45
- Include t/format.t in the MANIFEST file, so that it is
Index: RSA.pm
===================================================================
RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/RSA.pm,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** RSA.pm 18 Feb 2004 21:37:32 -0000 1.38
--- RSA.pm 15 Nov 2005 04:26:02 -0000 1.39
***************
*** 11,15 ****
@ISA = qw(DynaLoader);
! $VERSION = '0.21';
bootstrap Crypt::OpenSSL::RSA $VERSION;
--- 11,15 ----
@ISA = qw(DynaLoader);
! $VERSION = '0.22';
bootstrap Crypt::OpenSSL::RSA $VERSION;
|