15 lines
332 B
C#
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);
|