I have the modulus of an RSA public key. I want to use this public key with the Python library "M2Crypto", but it requires a public key in PEM format.

Thus, I have to convert the RSA modulus to a PEM file.

The modulus can be found here.

Any ideas?

Thanks a lot, hevalbaranov

link|improve this question

50% accept rate
feedback

1 Answer

The M2Crypto library has a way to reconstruct a public key. You need to know the public exponent, e (often 65337 for RSA keys, but other numbers such as 3 or 17 have been used), and the modulus, n (which is the 512-bit number provided in the question). Note that the docs describe the length-encoded format used for e and n.

Once the public key has been reconstructed, it can be saved into a file and used again later without the hassle of conversion.

link|improve this answer
No, I just want to encrypt messages with a python library (m2crypt) instead of the js library.And I want to use the key but as you can see, the rsa key I found is not same as a ssh public key file. – sid3k May 19 '09 at 19:38
It's not a joke.The question is simple, I've got a public RSA key and want to use it with a python library that does not support the format of the public key.I need to convert it. – sid3k May 19 '09 at 20:12
Okay then, you need to provide the public exponent of the key. For normal RSA keys, this is often 65537. But for a tiny 512-bit key, I'm not sure if the same exponent would be used. – erickson May 19 '09 at 20:36
all right, thanks for help. – sid3k May 19 '09 at 22:43
@erickson, I'm having similar troubles: stackoverflow.com/questions/10367072/…. I have the modulus and exponent in a file as hex values. I can read them as longs in python or as hex strings, but I don't know how to create a public key with them. M2Crypto is throwing all sorts of errors on padding and things. – Walkerneo Apr 28 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.