The title basically says it all.
I have a hexadecimal string representing a private key, and for me to be able to use it with OpenSSL, I need to be able to convert it to some format supported by OpenSSL, be it PEM or whatever.
I know that one can read a PEM formatted key and print it out in a format like this:
Private-Key: (1024 bit)
modulus:
01:02:03:04..
publicExponent: 65537 (0x10001)
privateExponent:
01:02:03:04..
prime1:
01:02:03:04..
prime2:
01:02:03:04..
exponent1:
01:02:03:04..
exponent2:
01:02:03:04..
coefficient:
01:02:03:04..
But I have been unable to find any information that converts a key from this format to the PEM format. Will I really be forced to RFC warrior this and write my own converter?