How can I create a RSA public key in PEM format from an RSA modulus? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T14:27:48Zhttp://stackoverflow.com/feeds/question/884207http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/884207/how-can-i-create-a-rsa-public-key-in-pem-format-from-an-rsa-modulus0How can I create a RSA public key in PEM format from an RSA modulus?hevalbaranov2009-05-19T17:58:14Z2009-05-19T21:03:47Z
<p>Hi all,</p>
<p>I have the modulus of an RSA public key. I want to use this public key with the <a href="http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto" rel="nofollow">Python library "M2Crypto",</a> but it requires a public key in PEM format. </p>
<p>Thus, I have to convert the RSA modulus to a PEM file.</p>
<p>The modulus can be found <a href="http://paste.pocoo.org/show/118040/" rel="nofollow">here.</a> </p>
<p>Any ideas?</p>
<p>Thanks a lot,
hevalbaranov</p>
http://stackoverflow.com/questions/884207/how-can-i-create-a-rsa-public-key-in-pem-format-from-an-rsa-modulus/884562#8845622Answer by sylvarking for How can I create a RSA public key in PEM format from an RSA modulus?sylvarking2009-05-19T19:21:54Z2009-05-19T21:03:47Z<p>The M2Crypto library has <a href="http://www.heikkitoivonen.net/m2crypto/api/M2Crypto.RSA-module.html#new%5Fpub%5Fkey" rel="nofollow">a way to reconstruct a public key.</a> You need to know the public exponent, <code>e</code> (often 65337 for RSA keys, but other numbers such as 3 or 17 have been used), and the modulus, <code>n</code> (which is the 512-bit number provided in the question). Note that the docs describe the length-encoded format used for <code>e</code> and <code>n</code>.</p>
<p>Once the public key has been reconstructed, it can be <a href="http://www.heikkitoivonen.net/m2crypto/api/M2Crypto.RSA.RSA%5Fpub-class.html#save%5Fkey" rel="nofollow">saved into a file</a> and used again later without the hassle of conversion.</p>