I want to use RSA Algorithm to encrypt/decrypt texts in my ASP.NET application. But I want to encrypt text on another application using private key and decrypt the text on the primary application using the public key.
But as I see, the algorithm's implementation in ASP.NET uses own key generation and I can't use custom key pairs.
May you please help me how can I use my own public/private key pairs in RSA implementation in ASP.NET?
Thank you