Files
git.stella-ops.org/src/__Libraries/StellaOps.Cryptography.Kms/Pkcs11KmsClient.Models.cs
2026-02-04 19:59:20 +02:00

10 lines
305 B
C#

using System;
namespace StellaOps.Cryptography.Kms;
public sealed partial class Pkcs11KmsClient
{
private sealed record CachedMetadata(Pkcs11KeyDescriptor Descriptor, DateTimeOffset ExpiresAt);
private sealed record CachedPublicKey(Pkcs11PublicKeyMaterial Material, DateTimeOffset ExpiresAt);
}