|
From: <iro...@us...> - 2004-02-25 03:22:08
|
Update of /cvsroot/perl-openssl/Crypt/OpenSSL/Bignum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5533 Modified Files: Bignum.pm Log Message: doc a few more methods - more still to be documented Index: Bignum.pm =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/Bignum/Bignum.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Bignum.pm 27 Apr 2003 20:04:24 -0000 1.11 --- Bignum.pm 25 Feb 2004 03:15:17 -0000 1.12 *************** *** 192,196 **** returned. ! =item mul This method returns a list consisting of quotient and the remainder --- 192,196 ---- returned. ! =item div This method returns a list consisting of quotient and the remainder *************** *** 203,206 **** --- 203,218 ---- fourth argument is set to the remainder. + =item exp + + This method returns the product of this object exponeniated by the + first argument, using the second argument, a + Crypt::OpenSSL::Bignum::CTX object, as a scratchpad. + + =item mod_exp + + This method returns the product of this object exponeniated by the + first argument, modulo the second argument, using the third argument, a + Crypt::OpenSSL::Bignum::CTX object, as a scratchpad. + =item pointer_copy |