I have following public key:
-----BEGIN RSA PUBLIC KEY-----
... key ...
-----END RSA PUBLIC KEY-----
PHP can't work with that public key. I found that it should be in x509 format to be usable in php. Is it possible to convert this key to x509 format? As i understand result should look like:
-----BEGIN PUBLIC KEY-----
... changed? key ...
-----END PUBLIC KEY-----
UPD: Exactly it was necessary to generate x509 certificate, not just public key.
phpseclib, a pure PHP RSA library, can work with RSA keys of that format just fine.
That said, with regard to openssl, you are right - RSA public keys need to be encapsulated in X.509 certs to work with most openssl_* functions.
From the phpseclib interoperability documentation:
That said the result shouldn't look like what you posted but rather like this: