CSharp-easy-RSA-PEM icon indicating copy to clipboard operation
CSharp-easy-RSA-PEM copied to clipboard

C# Class library with sample app to load and save PEM encoded keys into RSACryptoServiceProvider.

Results 6 CSharp-easy-RSA-PEM issues
Sort by recently updated
recently updated
newest added

Most C# developers can't use GPL licensed libraries because it forces their software to also convert to GPL. A license such as MIT, 3-clause BSD are permissive and don't have...

I'm getting below exception while trying to decrypt the string. "System.NullReferenceException: Object reference not set to an instance of an object.\r\n at CoreEntities.Classes.Utility.RSADecrypt(String input)\r\n at WebAPI.Attributes.ApiAuthorizeAttribute.Authorize(HttpActionContext actionContext)" Code:- ``` public...

Hi I am trying to decrypt cipher text using a key which was given to me. The key is in PEM format. It looks like ``` -----BEGIN RSA PRIVATE KEY-----...

I can successfully encrypt a file using public key generated from Java. But I can't decrypt using the private key. I generated RSA keys using the standard PKCS8 encoding for...

The library seems to be missing a function to save a PEM private key encrypted by password. It can read a PEM-encrypted key from file, but not save it.