From: <iro...@us...> - 2004-02-16 04:06:12
|
Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1986 Modified Files: RSA.pm Log Message: use_sslv23_padding is already implemented in RSA.xs Index: RSA.pm =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/RSA.pm,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** RSA.pm 16 Feb 2004 03:39:19 -0000 1.32 --- RSA.pm 16 Feb 2004 03:58:26 -0000 1.33 *************** *** 218,228 **** Decrypt a binary "string". Croaks if the key is public only. - =cut - - sub _set_padding_mode - { - $_[0]->{_Padding_Mode} = $_[1]; - } - =item use_no_padding --- 218,221 ---- *************** *** 248,258 **** denotes that the server is SSL3 capable. - =cut - - sub use_sslv23_padding - { - shift->_set_padding_mode($RSA_SSLV23_PADDING); - } - =item use_md5_hash --- 241,244 ---- |