How can I convert a PEM key into a RSA key pair?
You can extract a PEM public key from an OpenSSH private key using:
openssl rsa -pubout -in .ssh/id_rsa
But OpenSSH has no tools to convert from or too PEM public keys (note: PEM private keys are OpenSSH's native format for protocol 2 keys)