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