show/hide this revision's text 4 deleted 443 characters in body

Check http://msdn.microsoft.com/en-us/library/dd203099.aspx

under Cryptography Application Block.

Don't know if you will get your answer, but it's worth a try.

Edit after Comment.

Ok then check this code.

using System.Security.Cryptography;


public static string DecryptEncryptedData(stringBase64EncryptedData, stringPathToPrivateKeyFile) { 
    X509Certificate2myCertificate; 
    try{ 
        myCertificate = newX509Certificate2(PathToPrivateKeyFile); 
    } catch{ 
        throw newCryptographicException("Unable to open key file."); 
    } 

    RSACryptoServiceProvider rsaObj; 
    if(myCertificate.HasPrivateKey) { 
         rsaObj = (RSACryptoServiceProvider)myCertificate.PrivateKey; 
    } else 
        throw newCryptographicException("Private key not contained within certificate."); 

    if(rsaObj == null) 
        returnString.Empty; 

    byte[] decryptedBytes; 
    try{ 
        decryptedBytes = rsaObj.Decrypt(Convert.FromBase64String(Base64EncryptedData), false); 
    } catch { 
        throw newCryptographicException("Unable to decrypt data."); 
    } 

    //    Check to make sure we decrpyted the string 
   if(decryptedBytes.Length == 0) 
        returnString.Empty; 
    else 
        returnSystem.Text.Encoding.UTF8.GetString(decryptedBytes); 
}

Edit 2

Check http://www.jensign.com/opensslkey/

Here you will have a opensslkey.cs source code.

Run it and in the output you will have the information you want (the XML part).

show/hide this revision's text 3 added 443 characters in body

Check http://msdn.microsoft.com/en-us/library/dd203099.aspx

under Cryptography Application Block.

Don't know if you will get your answer, but it's worth a try.

Edit after Comment.

Ok then check this code.

using System.Security.Cryptography;


public static string DecryptEncryptedData(stringBase64EncryptedData, stringPathToPrivateKeyFile) { 
    X509Certificate2myCertificate; 
    try{ 
        myCertificate = newX509Certificate2(PathToPrivateKeyFile); 
    } catch{ 
        throw newCryptographicException("Unable to open key file."); 
    } 

    RSACryptoServiceProvider rsaObj; 
    if(myCertificate.HasPrivateKey) { 
         rsaObj = (RSACryptoServiceProvider)myCertificate.PrivateKey; 
    } else 
        throw newCryptographicException("Private key not contained within certificate."); 

    if(rsaObj == null) 
        returnString.Empty; 

    byte[] decryptedBytes; 
    try{ 
        decryptedBytes = rsaObj.Decrypt(Convert.FromBase64String(Base64EncryptedData), false); 
    } catch { 
        throw newCryptographicException("Unable to decrypt data."); 
    } 

    //    Check to make sure we decrpyted the string 
   if(decryptedBytes.Length == 0) 
        returnString.Empty; 
    else 
        returnSystem.Text.Encoding.UTF8.GetString(decryptedBytes); 
}

Edit 2

Check http://www.jensign.com/opensslkey/

Here you will have a opensslkey.cs source code.

Run it and in the output you will have the information you want (the XML part).

show/hide this revision's text 2 added 1161 characters in body

Check http://msdn.microsoft.com/en-us/library/dd203099.aspx

under Cryptography Application Block.

Don't know if you will get your answer, but it's worth a try.

Edit after Comment.

Ok then check this code.

using System.Security.Cryptography;


public static string DecryptEncryptedData(stringBase64EncryptedData, stringPathToPrivateKeyFile) { 
    X509Certificate2myCertificate; 
    try{ 
        myCertificate = newX509Certificate2(PathToPrivateKeyFile); 
    } catch{ 
        throw newCryptographicException("Unable to open key file."); 
    } 

    RSACryptoServiceProvider rsaObj; 
    if(myCertificate.HasPrivateKey) { 
         rsaObj = (RSACryptoServiceProvider)myCertificate.PrivateKey; 
    } else 
        throw newCryptographicException("Private key not contained within certificate."); 

    if(rsaObj == null) 
        returnString.Empty; 

    byte[] decryptedBytes; 
    try{ 
        decryptedBytes = rsaObj.Decrypt(Convert.FromBase64String(Base64EncryptedData), false); 
    } catch { 
        throw newCryptographicException("Unable to decrypt data."); 
    } 

    //    Check to make sure we decrpyted the string 
   if(decryptedBytes.Length == 0) 
        returnString.Empty; 
    else 
        returnSystem.Text.Encoding.UTF8.GetString(decryptedBytes); 
}
show/hide this revision's text 1