I get a cryptographic exception in the following code, and the exception states: invalid flags specified

RSACryptoServiceProvider rsa = new RSACryptoServiceProvider((int)strength);
rsa.Encrypt(new byte[] { 0, 1, 2, 3, 4, 5, 7 }, false); // forcing the key to generate

I have tried to set cspParameters but there is no difference. I think it only happens when I set a large bitsize. (strength value)

link|improve this question

64% accept rate
Please post it as answer and accept it or delete your question – Oskar Kjellin Aug 14 '11 at 11:26
Never mind, the source of the problem was that I set it to a value larger than 16384. (which is the max bitsize for RSA in dot net). – better-than-soil Aug 27 '11 at 7:17
feedback

1 Answer

up vote 1 down vote accepted

Never mind, the source of the problem was that I set it to a value larger than 16384. (which is the max bitsize for RSA in dot net).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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