vote up 0 vote down star

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...

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?

flag

78% accept rate

3 Answers

vote up 0 vote down

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.

You need atleast P, Q and the public exponent.

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));
link|flag
vote up 2 vote down

Given the modulus N, the public exponent E and the private exponent D, it is possible to find the other parameters P, Q etc.

If R is a random number then by the properties of RSA the following equation holds:

R == R ^ (E*D)  (mod N).

Hence if R is relatively prime to N then

1 == R ^ (E*D-1) (mod N).

Moreover, R ^ ((E*D-1)/2) mod N is a square root of 1 and it can be shown that

gcd(R ^ ((E*D-1)/2) - 1, N)

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.

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.

link|flag
vote up 0 vote down check

Mono have some classes to do the same. BigIntegers, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.