mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 01:44:06 +00:00
RSA/PublicKey: rm bad type hint
This commit is contained in:
parent
9a1d16fe97
commit
9141c92236
@ -364,7 +364,7 @@ class PublicKey extends RSA implements Common\PublicKey
|
|||||||
* @throws \LengthException if strlen($m) > $this->k - 2 * $this->hLen - 2
|
* @throws \LengthException if strlen($m) > $this->k - 2 * $this->hLen - 2
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function rsaes_oaep_encrypt(BigInteger $m)
|
private function rsaes_oaep_encrypt($m)
|
||||||
{
|
{
|
||||||
$mLen = strlen($m);
|
$mLen = strlen($m);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user