mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACMEv2
|
|
{
|
|
public class RegistrationCache
|
|
{
|
|
public readonly Dictionary<string, CertificateCache> CachedCerts = new Dictionary<string, CertificateCache>(StringComparer.OrdinalIgnoreCase);
|
|
public byte[] AccountKey;
|
|
public string Id;
|
|
public Jwk Key;
|
|
public Uri Location;
|
|
}
|
|
|
|
|
|
|
|
}
|