mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
12 lines
181 B
C#
12 lines
181 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace ACMEv2
|
|
{
|
|
public class CachedCertificateResult
|
|
{
|
|
public RSA PrivateKey;
|
|
public string Certificate;
|
|
}
|
|
|
|
}
|