using System; using Org.BouncyCastle.Asn1.X509; namespace Org.BouncyCastle.Crypto.Tls { /// /// This should be implemented by any class which can find out, if a given /// certificate chain is beeing accepted by an client. /// public interface ICertificateVerifyer { /// The certs, which are part of the chain. /// True, if the chain is accepted, false otherwise bool IsValid(X509CertificateStructure[] certs); } }