I searched a lot online but stuck with doubts in RSA public key and private key cryptography.
When I checked MSDN site, I tried this
RSACryptoServiceProvider rsaEncryptDecrypt = new RSACryptoServiceProvider();
byte[] privateKeyByte = rsaEncryptDecrypt.ExportParameters(true).Modulus;
byte[] publicKeyByte = rsaEncryptDecrypt.ExportParameters(false).Modulus;
string privateKey = Convert.ToBase64String(privateKeyByte);
string publicKey = Convert.ToBase64String(publicKeyByte);
The string public key and private key are Same!!! Is it correct? I mean how can the strings be same? Isn't suppose to be two different keys?
Please correct me if I am wrong. I am confused !
Thank you in advance!
UPDATE
I mistook the parameters,
But then: When I saw
http://stackoverflow.com/questions/6592990/simple-rsa-encryption-decryption-in-net#answer-6593054"
How can I get string value? because I have to store it in App.config and access it whenever I want. I mean I need to store the public and private keys both in App.config
UPDATE2
I am sorry, I just used ToXmlString property of RSACryptoServiceProvider's instance. Got the private key and public key.