11 lines
295 B
C#
11 lines
295 B
C#
using System.Security.Cryptography.X509Certificates;
|
|
|
|
namespace StellaOps.AirGap.Bundle.Services;
|
|
|
|
public interface IOcspResponseFetcher
|
|
{
|
|
Task<IReadOnlyList<TsaRevocationBlob>> FetchAsync(
|
|
IReadOnlyList<X509Certificate2> certificateChain,
|
|
CancellationToken ct = default);
|
|
}
|