Files
git.stella-ops.org/src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyMaterial.cs
master fac626db8d up
2025-10-29 19:24:20 +02:00

15 lines
332 B
C#

namespace StellaOps.Cryptography.Kms;
/// <summary>
/// Represents exported key material for verification and registration.
/// </summary>
public sealed record KmsKeyMaterial(
string KeyId,
string VersionId,
string Algorithm,
string Curve,
byte[] D,
byte[] Qx,
byte[] Qy,
DateTimeOffset CreatedAt);