show/hide this revision's text 2 Answered for RSA not 3DES originally

One way

Ok, forget the last answer I have done is to use can't read ::CryptExportKey() ) You are working with 3Des keys not RSA keys.

I worked on a bunch of code to get the PRIVATEKEYBLOB or PUBLICKEYBLOBshare keys between .From there you can use the PUBLICKEYSTRUC NET, CryptoAPI and RSAPUBKEY openssl. Found a lot of good example code here for doing the key conversions:

http://www.jensign.com/JavaScience/cryptoutils/index.html

There is some 3des stuff in some of those examples, but it was related to extract openssl -> .NET iirc.

I also just looked back over the various RSA key components code and write a one thing I notice I am doing is using Array.Reverse() on all the key data xml file that looks like this parts of the RSA key (base64 data removed):

<RSAKeyValue>
   <Modulus></Modulus>
   <Exponent></Exponent>
   <P></P>
   <Q></Q>
   <DP></DP>
   <DQ></DQ>
   <InverseQ</InverseQ>
   <D></D>
</RSAKeyValue>

You can then load this xml from RSA.FromXmlString()D,DP,DQ,InverseQ,Modulus,P,Q) i guess to convert endian. Let me know if that makes sense I think I have the mappings from remember that being non-obvious when first tackling the PUBLICKEYSTRUC and RSAPUBKEY structs somewhereproblem.It is all straight foward though

Hope some of that helps. Good luck.

show/hide this revision's text 1

One way I have done is to use ::CryptExportKey() to get the PRIVATEKEYBLOB or PUBLICKEYBLOB. From there you can use the PUBLICKEYSTRUC and RSAPUBKEY to extract the various key components and write a key data xml file that looks like this (base64 data removed):

<RSAKeyValue>
   <Modulus></Modulus>
   <Exponent></Exponent>
   <P></P>
   <Q></Q>
   <DP></DP>
   <DQ></DQ>
   <InverseQ</InverseQ>
   <D></D>
</RSAKeyValue>

You can then load this xml from RSA.FromXmlString(). Let me know if that makes sense I think I have the mappings from the PUBLICKEYSTRUC and RSAPUBKEY structs somewhere. It is all straight foward though.