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

15 lines
427 B
C#

using System;
using System.Collections.Generic;
using StellaOps.Cryptography;
namespace StellaOps.Cryptography.Kms;
internal sealed record KmsSigningRegistration(
CryptoKeyReference Reference,
string VersionId,
string Algorithm,
DateTimeOffset CreatedAt,
IReadOnlyDictionary<string, string?> Metadata,
KmsPublicKey? PublicKey);
internal sealed record KmsPublicKey(string Curve, byte[] Qx, byte[] Qy);