using System.Security.Cryptography.X509Certificates; namespace StellaOps.AirGap.Bundle.Services; public interface IOcspResponseFetcher { Task> FetchAsync( IReadOnlyList certificateChain, CancellationToken ct = default); }