1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-11-27 04:46:26 +01:00

$this->publicKey -> $this->publicExponent

git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@65 21d32557-59b3-4da0-833f-c5933fad653e
This commit is contained in:
Jim Wigginton 2009-12-04 20:50:21 +00:00
parent 2da66fdd24
commit a7a41ff610

View File

@ -62,7 +62,7 @@
* @author Jim Wigginton <terrafrost@php.net>
* @copyright MMIX Jim Wigginton
* @license http://www.gnu.org/licenses/lgpl.txt
* @version $Id: RSA.php,v 1.1 2009-12-03 08:18:53 terrafrost Exp $
* @version $Id: RSA.php,v 1.2 2009-12-04 20:50:21 terrafrost Exp $
* @link http://phpseclib.sourceforge.net
*/
@ -909,7 +909,7 @@ class Crypt_RSA {
if (!$this->modulus->equals($components['modulus'])) {
return false;
}
$this->publicKey = $components['publicExponent'];
$this->publicExponent = $components['publicExponent'];
}
/**