Sample code: CspParameters cspParameters = new CspParameters(); cspParameters.ProviderType = 1; // PROV_RSA_FULL

        // Create the crypto service provider, generating a new
        // key.
        mRsaCSP = new RSACryptoServiceProvider(mDefaultKeyLength, cspParameters);
        mRsaCSP.PersistKeyInCsp = true;
        RSAParameters privateKey = mRsaCSP.ExportParameters(true);


        byte[] rsaBytes = mRsaCSP.ExportCspBlob(true);

        try
        {
            X509Certificate2 cert = new X509Certificate2(rsaBytes);                
            mKeyDataPfx = Convert.ToBase64String(cert.Export(X509ContentType.Pkcs12, password));
        }
        catch (Exception ce)
        {
            string error = ce.Message;
        }
link|improve this question
A RSA key is not directly compatible with a X509 Certificate. A X509 Certificate needs to have the key signed by an issuer, even if it is self-signed. Can you tell us what you are actually trying to accomplish? Are you trying to dynamically create a X509 certificate in code? – Phil Bolduc Feb 4 at 18:32
Yes. That is exactly what I am trying to do. The idea is that I have old RSA certificates stored as string with RSACryptoServiceProvider.ToXmlString(true). Those would need to be read in and exported as PFX files. New RSA certificates would need to be generated and stored as PFX files. – chiefbrownbotom Feb 4 at 18:50
I suggest you check out Bouncy Castle .NET source code and examples. I think the example bccrypto-net-1.7-src\csharp\crypto\test\src\pkcs\examples\PKCS12Example.cs should get you started. bouncycastle.org/csharp – Phil Bolduc Feb 4 at 20:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.