C# RSA encryption using modulus and public exponent - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T21:58:43Zhttp://stackoverflow.com/feeds/question/949543http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949543/c-rsa-encryption-using-modulus-and-public-exponent0C# RSA encryption using modulus and public exponentkornelijepetak2009-06-04T09:44:18Z2009-06-22T07:00:01Z
<p>I have to implement a digital envelope using AES and RSA, but I am having problems with the .NET implementation of the RSA algorithm.</p>
<p>I have managed to encrypt the data (AES) with the random symetric key, but now I have to encrypt the key with RSA.</p>
<p>The key is an array of bytes (byte[]) and the public key I have tells me only the modulus and the public exponent, both arrays of bytes (byte[]).</p>
<p>Using only those two parameters, how can I encrypt my AES generated key with RSA?</p>
<p>The following code retrieves the message from file and encrypts it with AES.
Afterwards, public key is read from the public key file and the modulus and the exponent are in their appropriate byte arrays. How would I continue to encrypt the "symetricKey" with RSA?</p>
<pre><code>String msgString = Systematic.GetFileContents(messagePath);
Byte[] initVector = new byte[] { 50, 60, 70, 80, 90, 40, 50, 60, 70, 80, 90, 40, 60, 80, 70, 90 };
Byte[] symetricKey = AesCrypt.GenerateRandomKey();
Byte[] encryptedMessage = AesCrypt.Encrypt(msgString, symetricKey, initVector, mode);
Byte[] modulus = null;
Byte[] publicExp = null;
DataFormatHelper.ReadPublicKey(publicKeyPath, "RSA", ref modulus, ref publicExp);
</code></pre>
<p><strong>EDIT</strong>
In reply to rsa.ImportParameters answer:</p>
<p>I've tried with the rsa.ImportParameters(keyInfo) but it throws a CryptographicException ("Bad Data"). What about array sizes?
Currently, modulus is 128 bytes and Exponent 64 bytes.</p>
http://stackoverflow.com/questions/949543/c-rsa-encryption-using-modulus-and-public-exponent/949601#9496012Answer by ShuggyCoUk for C# RSA encryption using modulus and public exponentShuggyCoUk2009-06-04T09:57:57Z2009-06-04T09:57:57Z<p>Using <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsacryptoserviceprovider.aspx" rel="nofollow">RSACryptoServiceProvider </a></p>
<pre><code>static public byte[] RSAEncrypt(byte[] data,
RSAParameters keyInfo,
bool doOAEPPadding)
{
byte[] encryptedData;
using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider())
{
//Import the RSA Key information. This only needs
//toinclude the public key information.
rsa.ImportParameters(keyInfo);
//Encrypt the passed byte array and specify OAEP padding.
//OAEP padding is only available on Microsoft Windows XP or later.
encryptedData = rsa.Encrypt(data, doOAEPPadding);
}
return encryptedData;
}
</code></pre>
<p>So what you need are the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsaparameters.aspx" rel="nofollow">RSAParameters</a> but all you need to set are the Modulus and the Exponent to encrypt.</p>
http://stackoverflow.com/questions/949543/c-rsa-encryption-using-modulus-and-public-exponent/949828#9498280Answer by Meetu Choudhary for C# RSA encryption using modulus and public exponentMeetu Choudhary2009-06-04T10:50:24Z2009-06-04T10:50:24Z<p>And how o decrypt the same. while decrypting it gives error as "Error occurred while decoding OAEP padding".</p>