part #2
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user