11 lines
239 B
C#
11 lines
239 B
C#
namespace StellaOps.Cryptography.Kms;
|
|
|
|
/// <summary>
|
|
/// Represents the output of a signing operation.
|
|
/// </summary>
|
|
public sealed record KmsSignResult(
|
|
string KeyId,
|
|
string VersionId,
|
|
string Algorithm,
|
|
byte[] Signature);
|