namespace StellaOps.AuditPack.Services; /// /// Interface for signing replay attestations. /// public interface IReplayAttestationSigner { Task SignAsync( byte[] payload, CancellationToken cancellationToken = default); }