From e85321959e20a9f307a2f80d59a22fd53770cfe9 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 7 Sep 2014 22:26:22 +0200 Subject: [PATCH] SSH1: Math_BigInteger is supposed to be BigInteger. --- phpseclib/Net/SSH1.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpseclib/Net/SSH1.php b/phpseclib/Net/SSH1.php index 511084cb..ae10bffc 100644 --- a/phpseclib/Net/SSH1.php +++ b/phpseclib/Net/SSH1.php @@ -1334,9 +1334,9 @@ class Net_SSH1 * calls this call modexp, instead, but I think this makes things clearer, maybe... * * @see Net_SSH1::__construct() - * @param Math_BigInteger $m + * @param BigInteger $m * @param Array $key - * @return Math_BigInteger + * @return BigInteger * @access private */ function _rsa_crypt($m, $key)