Blake
Results
3
comments of
Blake
This is still an issue, and 1.0.0 is still viable
Limiting the version to v2 ``` composer require phpseclib/phpseclib:~2.0 ``` Also phpseclib2_compat did not work for me ``` $rsa = new RSA(); $rsa->_convertPublicKey($n, $e) // method not found ```
@terrafrost thanks for the tip however the issue is specific to this package. inspect **jose-php/src/JOSE/JWK.php** ``` function toKey() { ... stuff $pem_string = $rsa->_convertPublicKey($n, $e); } ```