I need to encrypt a string using an RSA 1.5 algorithm. I have been provided with a private key. However, I cannot for the life of me figure out how to add this key to the class. It seems as tho the key needs to be of type RSAParameter stuct. However this requires a set of values I have not been given such as Modulus, Exponent, P, Q, etc.. All I have is the private key. Can anyone help?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You should be aware of the Bouncycastle C# library. There are in particular two very useful classes: Here is a tiny bit of untested code that shows how to use it
|
|||||||
|
|
I guess that is what are you looking for:
To generate a new key, you can use RSACryptoServiceProvider.ExportParameters method. Refer to the following: |
||||
|
|