pem-utils
pem-utils copied to clipboard
Managed .NET (C#) utility library for working with PEM files with DER/ASN.1 encoding
Initially I found an intermittent issue in my integration tests with RSAParameters to PEM conversion using PemWriter and reading it back using PemReader. Now I have narrowed it down to...
Exception: System.NotImplementedException: The format PRIVATE KEY is not yet implemented at PemUtils.PemReader.ReadRsaKey()
I am using .Net framework to do this task. Let me know if you need any other points.
I used the command-line OpenSSL program to generate the public and private keys and to sign a file but when I try to use `RSA.VerifyData` to verify the signature, it...