I'm trying to decrypt using RSACryptoServiceProvider, but I only have the modulus and d pair as a private key and also the exponent.
RsaParameters struct wont make do with these. It rejects me upon decryption with an exception "Bad key".
To my understanding, this pair is enough to decrypt without the entire DQ DP INVERSEQ parts. More over, in an example I found for python with pyCrypto, it has an RSA.construct method that only takes the above parts.
Is it possible with the classes in the .NET framework or another library? I've tried with BountyCastle but had no luck.