The certificate is generated as shown below. Conversion into X509 format seems to work fine when the plain X509ContentType.Cert is exported but fails with Key not in valid state when exporting to X509ContentType.Pkcs12

        CspParameters cspParameters = new CspParameters();
        cspParameters.ProviderType = 1; // PROV_RSA_FULL            
        cspParameters.KeyContainerName = "Temporary in memory";

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


        try
        {
            PfxExporter.getPfxBytes(mRsaCSP, password);
        }
        catch (Exception ce)
        {
            string error = ce.Message;
        }   


public static byte[] getPfxBytes(RSACryptoServiceProvider rsaCSP, SecureString exportPassword)
    {
        CspKeyContainerInfo keyInfo = rsaCSP.CspKeyContainerInfo;
        String keycontainer = keyInfo.KeyContainerName;
        uint keyspec = (uint)keyInfo.KeyNumber;
        String provider = keyInfo.ProviderName;
        uint cspflags = 0;  //CryptoAPI Current User store;   LM would be CRYPT_MACHINE_KEYSET  = 0x00000020
        byte[] pkcs12 = GetPkcs12(rsaCSP, keycontainer, provider, keyspec, cspflags, exportPassword);

        if (pkcs12 == null)
        {
            throw new ApplicationException("Failed to convert RSA certificates");
        }

        return pkcs12;
    }

    private static byte[] GetPkcs12(RSA rsa, String keycontainer, String cspprovider, uint KEYSPEC, uint cspflags, SecureString exportPassword)
    {
        byte[] pfxblob = null;
        IntPtr hCertCntxt = IntPtr.Zero;

        String DN = "CN=Unsigned Certificate";

        hCertCntxt = CreateUnsignedCertCntxt(keycontainer, cspprovider, KEYSPEC, cspflags, DN);

        if (hCertCntxt == IntPtr.Zero)
        {
            throw new ApplicationException("Failed to create an unsigned certificate.");                
        }

        try
        {                
            X509Certificate2 cert = new X509Certificate2(hCertCntxt);   //create certificate object from cert context.                                                  
            pfxblob = cert.Export(X509ContentType.Cert); // plaintext export works
            // pfxblob = cert.Export(X509ContentType.Pkcs12, "testPass"); // complains key is not in a valid state.
        }
        catch(Exception ex)
        {
            string error = ex.Message;
        }
        finally
        {
            pfxblob = null;
            rsa.Clear();
            if (hCertCntxt != IntPtr.Zero)
            {
                CapiMethods.CertFreeCertificateContext(hCertCntxt);                        
            }                
        }

        return pfxblob;
    }

    private static IntPtr CreateUnsignedCertCntxt(String keycontainer, String provider, uint KEYSPEC, uint cspflags, String DN)
    {
        const uint AT_KEYEXCHANGE = 0x00000001;
        const uint AT_SIGNATURE = 0x00000002;
        const uint CRYPT_MACHINE_KEYSET = 0x00000020;
        const uint PROV_RSA_FULL = 0x00000001;
        const String MS_DEF_PROV = "Microsoft Base Cryptographic Provider v1.0";
        const String MS_STRONG_PROV = "Microsoft Strong Cryptographic Provider";
        const String MS_ENHANCED_PROV = "Microsoft Enhanced Cryptographic Provider v1.0";
        const uint CERT_CREATE_SELFSIGN_NO_SIGN = 1;
        const uint X509_ASN_ENCODING = 0x00000001;
        const uint CERT_X500_NAME_STR = 3;
        IntPtr hCertCntxt = IntPtr.Zero;
        byte[] encodedName = null;
        uint cbName = 0;

        if (provider != MS_DEF_PROV && provider != MS_STRONG_PROV && provider != MS_ENHANCED_PROV)
            return IntPtr.Zero;
        if (keycontainer == "")
            return IntPtr.Zero;
        if (KEYSPEC != AT_SIGNATURE && KEYSPEC != AT_KEYEXCHANGE)
            return IntPtr.Zero;
        if (cspflags != 0 && cspflags != CRYPT_MACHINE_KEYSET)   //only 0 (Current User) keyset is currently used.
            return IntPtr.Zero;
        if (DN == "")
            return IntPtr.Zero;


        if (CapiMethods.CertStrToName(X509_ASN_ENCODING, DN, CERT_X500_NAME_STR, IntPtr.Zero, null, ref cbName, IntPtr.Zero))
        {
            encodedName = new byte[cbName];
            CapiMethods.CertStrToName(X509_ASN_ENCODING, DN, CERT_X500_NAME_STR, IntPtr.Zero, encodedName, ref cbName, IntPtr.Zero);
        }

        CapiMethods.CERT_NAME_BLOB subjectblob = new CapiMethods.CERT_NAME_BLOB();
        subjectblob.pbData = Marshal.AllocHGlobal(encodedName.Length);
        Marshal.Copy(encodedName, 0, subjectblob.pbData, encodedName.Length);
        subjectblob.cbData = encodedName.Length;

        CapiMethods.CRYPT_KEY_PROV_INFO pInfo = new CapiMethods.CRYPT_KEY_PROV_INFO();
        pInfo.pwszContainerName = keycontainer;
        pInfo.pwszProvName = provider;
        pInfo.dwProvType = PROV_RSA_FULL;
        pInfo.dwFlags = cspflags;
        pInfo.cProvParam = 0;
        pInfo.rgProvParam = IntPtr.Zero;
        pInfo.dwKeySpec = KEYSPEC;

        hCertCntxt = CapiMethods.CertCreateSelfSignCertificate(IntPtr.Zero, ref subjectblob, CERT_CREATE_SELFSIGN_NO_SIGN, ref pInfo, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);

        Win32Exception opException = null;
        if (hCertCntxt == IntPtr.Zero)
        {
            opException = new Win32Exception(Marshal.GetLastWin32Error());
        }

        Marshal.FreeHGlobal(subjectblob.pbData);

        if (opException != null)
        {
            throw opException;
        }

        return hCertCntxt;
    }
link|improve this question
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.