maksit-certs-ui/v1.0/LetsEncrypt/ACMEv2/CachedCertificateResult.cs

12 lines
202 B
C#

using System.Security.Cryptography;
namespace ACMEv2
{
public class CachedCertificateResult
{
public RSACryptoServiceProvider PrivateKey;
public string Certificate;
}
}