From 5bddb49c62cf0bd26b78e265465c86d77bee7c6b Mon Sep 17 00:00:00 2001 From: terrafrost Date: Thu, 1 Oct 2015 16:02:28 -0500 Subject: [PATCH] RSA: clean up merge --- phpseclib/Crypt/RSA.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/phpseclib/Crypt/RSA.php b/phpseclib/Crypt/RSA.php index 558cd5fa..186fcc08 100644 --- a/phpseclib/Crypt/RSA.php +++ b/phpseclib/Crypt/RSA.php @@ -349,20 +349,6 @@ class RSA } } - /** - * Initialize static variables - * - * @access private - */ - static function _initialize_static_variables() - { - if (!isset(self::$zero)) { - self::$zero= new BigInteger(0); - self::$one = new BigInteger(1); - self::$configFile = __DIR__ . '/../openssl.cnf'; - } - } - /** * The constructor *