From: <iro...@us...> - 2004-02-16 05:49:02
|
Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18568 Modified Files: RSA.xs Log Message: neither sign, verify nor encrypt have optional arguments Index: RSA.xs =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/RSA.xs,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** RSA.xs 16 Feb 2004 05:23:54 -0000 1.42 --- RSA.xs 16 Feb 2004 05:41:11 -0000 1.43 *************** *** 358,365 **** } - # Encrypt plain text into cipher text. Returns the cipher text - SV* ! encrypt(p_rsa, plaintext_SV, ...) rsaData* p_rsa; SV* plaintext_SV; --- 358,363 ---- } SV* ! encrypt(p_rsa, plaintext_SV) rsaData* p_rsa; SV* plaintext_SV; *************** *** 396,401 **** RETVAL - - # Decrypt cipher text into plain text. Returns the plain text SV* decrypt(p_rsa, ciphertext_SV) --- 394,397 ---- *************** *** 527,531 **** SV* ! sign(p_rsa, text_SV, ...) rsaData* p_rsa; SV* text_SV; --- 523,527 ---- SV* ! sign(p_rsa, text_SV) rsaData* p_rsa; SV* text_SV; *************** *** 568,572 **** void ! verify(p_rsa, text_SV, sig_SV, ...) rsaData* p_rsa; SV* text_SV; --- 564,568 ---- void ! verify(p_rsa, text_SV, sig_SV) rsaData* p_rsa; SV* text_SV; |