Files
git.stella-ops.org/src/StellaOps.Excititor.Attestation/Signing/IVexSigner.cs
2025-10-18 20:44:59 +03:00

13 lines
336 B
C#

using System;
using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Excititor.Attestation.Signing;
public sealed record VexSignedPayload(string Signature, string? KeyId);
public interface IVexSigner
{
ValueTask<VexSignedPayload> SignAsync(ReadOnlyMemory<byte> payload, CancellationToken cancellationToken);
}