RSA/PublicKey: rm bad type hint

This commit is contained in:
terrafrost 2022-06-22 07:18:36 -05:00
parent 9a1d16fe97
commit 9141c92236

View File

@ -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);