From a7a41ff610d9a4c1984b203c1efd57a23f319207 Mon Sep 17 00:00:00 2001 From: Jim Wigginton Date: Fri, 4 Dec 2009 20:50:21 +0000 Subject: [PATCH] $this->publicKey -> $this->publicExponent git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@65 21d32557-59b3-4da0-833f-c5933fad653e --- phpseclib/Crypt/RSA.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpseclib/Crypt/RSA.php b/phpseclib/Crypt/RSA.php index 9c9b59c1..8bfcec72 100644 --- a/phpseclib/Crypt/RSA.php +++ b/phpseclib/Crypt/RSA.php @@ -62,7 +62,7 @@ * @author Jim Wigginton * @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']; } /**