diff --git a/phpseclib/Crypt/RSA/OpenSSH.php b/phpseclib/Crypt/RSA/OpenSSH.php index f8aa11bf..765976ba 100644 --- a/phpseclib/Crypt/RSA/OpenSSH.php +++ b/phpseclib/Crypt/RSA/OpenSSH.php @@ -106,7 +106,7 @@ class OpenSSH * @param \phpseclib\Math\BigInteger $e * @return string */ - static function savePublicKey(BigInteger $n, BigInteger $e) + function savePublicKey(BigInteger $n, BigInteger $e) { $publicExponent = $e->toBytes(true); $modulus = $n->toBytes(true);