I\'m trying to encrypt and decrypt some data with RSA. I\'ve looked up teh RSA
class but I\'m only seeing the abstract class https://msdn.microsoft.com/en-us/li
You will need to use the dotnetcore library instead. Add the System.Security.Cryptography.Algorithms
Nuget package to your project. You can find it here: System.Security.Cryptography.Algorithms
It provides all the common Algorithms for your project.
Here is the RSACryptoServiceProvider class that you would use for the Encrypt() and Decrypt() methods.