namespace StellaOps.Cryptography.Kms; /// /// Represents the output of a signing operation. /// public sealed record KmsSignResult( string KeyId, string VersionId, string Algorithm, byte[] Signature);