Files
git.stella-ops.org/src/__Libraries/StellaOps.Cryptography.Kms/KmsSignResult.cs
master fac626db8d up
2025-10-29 19:24:20 +02:00

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);