up
This commit is contained in:
14
src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyMaterial.cs
Normal file
14
src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyMaterial.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user