From 9141c922364647c0c0377bf124fac8a84b590c81 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Wed, 22 Jun 2022 07:18:36 -0500 Subject: [PATCH] RSA/PublicKey: rm bad type hint --- phpseclib/Crypt/RSA/PublicKey.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpseclib/Crypt/RSA/PublicKey.php b/phpseclib/Crypt/RSA/PublicKey.php index 5e267b9e..89408792 100644 --- a/phpseclib/Crypt/RSA/PublicKey.php +++ b/phpseclib/Crypt/RSA/PublicKey.php @@ -364,7 +364,7 @@ class PublicKey extends RSA implements Common\PublicKey * @throws \LengthException if strlen($m) > $this->k - 2 * $this->hLen - 2 * @return string */ - private function rsaes_oaep_encrypt(BigInteger $m) + private function rsaes_oaep_encrypt($m) { $mLen = strlen($m);