From 12f70270cdcf69610d1b816ed10d6bab2645e17d Mon Sep 17 00:00:00 2001 From: terrafrost Date: Thu, 4 Aug 2016 01:06:52 -0500 Subject: [PATCH] fix bad cherry pick --- phpseclib/Crypt/RSA.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/phpseclib/Crypt/RSA.php b/phpseclib/Crypt/RSA.php index 4ce9d62e..23ba0d07 100644 --- a/phpseclib/Crypt/RSA.php +++ b/phpseclib/Crypt/RSA.php @@ -138,6 +138,7 @@ define('CRYPT_RSA_SIGNATURE_PSS', 1); * compatibility with protocols (like SSH-2) written before PSS's introduction. */ define('CRYPT_RSA_SIGNATURE_PKCS1', 2); +/**#@-*/ /**#@+ * @access private @@ -281,7 +282,7 @@ class Crypt_RSA /** * Precomputed Zero * - * @var array + * @var Math_BigInteger * @access private */ var $zero; @@ -289,7 +290,7 @@ class Crypt_RSA /** * Precomputed One * - * @var array + * @var Math_BigInteger * @access private */ var $one;