How to create private RSA key using modulus, D, exponent in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:09:54Zhttp://stackoverflow.com/feeds/question/991366http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/991366/how-to-create-private-rsa-key-using-modulus-d-exponent-in-c0How to create private RSA key using modulus, D, exponent in C#?Priyank Bolia2009-06-13T19:47:30Z2009-11-13T08:23:17Z
<p>I have 3 byte arrays of 128, 128, 3 bytes respectively. I don't know what it is, but I expect them to be Modulus, D, Exponent.
Now how to use these arrays in C# to decrypt a byte array using RSA?
When I create RSA param and assign the 3 byte arrays to Modulus, D, Exponent and try to use that RSAParameters in RSACryptoServiceProvider.ImportParameters, Decryption fails stating corrupt keys. I guess the other entries also need to be filled DQ,DP,...etc...</p>
<p>How do I do that in C#? I don't have that values, is there an easy way to decrypt a byte array using only Modulus, D, Exponent in C#, as in other languages?</p>
http://stackoverflow.com/questions/991366/how-to-create-private-rsa-key-using-modulus-d-exponent-in-c/1136343#11363430Answer by the_ajp for How to create private RSA key using modulus, D, exponent in C#?the_ajp2009-07-16T09:08:12Z2009-07-16T09:08:12Z<p>You don't have enough when you just have Mod, D, and the exponent. (Well you might have enough) P and Q are VERY hard to calculate from the mod. I wouldn't know how to do that and there are almost certainly more primes than the right ones that multiplied end up with the same mod. </p>
<p>You need atleast P, Q and the public exponent. </p>
<pre><code>P, Q and D are the building blocks
DP = D mod (p - 1)
DQ = D mod (q - 1)
InverseQ = Q^-1 mod p
Modulus = P * Q
so now we have
P Q and D.
and we can calulate DP, DQ, InverseQ and Modulus and Exponent (see below)
long gcd(long a, long b)
{
long temp;
while (b != 0)
{
temp = b;
b = a % b;
a = temp;
}
return a;
}
Exponent = gcd(1, (P - 1)*(Q - 1));
</code></pre>
http://stackoverflow.com/questions/991366/how-to-create-private-rsa-key-using-modulus-d-exponent-in-c/1139612#11396122Answer by Accipitridae for How to create private RSA key using modulus, D, exponent in C#?Accipitridae2009-07-16T18:59:12Z2009-07-16T18:59:12Z<p>Given the modulus N, the public exponent E and the private exponent D, it is possible to find the other parameters P, Q etc.</p>
<p>If R is a random number then by the properties of RSA the following equation holds:</p>
<pre><code>R == R ^ (E*D) (mod N).
</code></pre>
<p>Hence if R is relatively prime to N then</p>
<pre><code>1 == R ^ (E*D-1) (mod N).
</code></pre>
<p>Moreover, R ^ ((E*D-1)/2) mod N is a square root of 1 and it can be shown that</p>
<pre><code>gcd(R ^ ((E*D-1)/2) - 1, N)
</code></pre>
<p>gives a factor of N with probability 50%. This can be used to find the factors of N, given D, E and N rather quickly. Once the factors are known DP, DQ etc can be computed without problem. </p>
<p>Doing these computations with C# is a little tricky, since C# does not [yet] have support for BigIntegers. However the F# library does, and the corresponding classes can be used from C# without problems.</p>
http://stackoverflow.com/questions/991366/how-to-create-private-rsa-key-using-modulus-d-exponent-in-c/1727876#17278760Answer by Priyank Bolia for How to create private RSA key using modulus, D, exponent in C#?Priyank Bolia2009-11-13T08:23:17Z2009-11-13T08:23:17Z<p>Mono have some classes to do the same. BigIntegers, etc.</p>