I want to implement In-App Billing in my application. I have a private key (provided by Google) to verify requests, but i need to put it inside a .pem file. The problem is that when I paste it in the form:
-----BEGIN RSA PRIVATE KEY-----
------------<MY KEY>----------
-----END RSA PRIVATE KEY-----
It says that is an invalid certificate.
How can I transform the Key string in a valid .pem file? Thanks.