Initial Commit
This commit is contained in:
17
iTechSharp/srcbc/crypto/tls/ICertificateVerifyer.cs
Normal file
17
iTechSharp/srcbc/crypto/tls/ICertificateVerifyer.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X509;
|
||||
|
||||
namespace Org.BouncyCastle.Crypto.Tls
|
||||
{
|
||||
/// <remarks>
|
||||
/// This should be implemented by any class which can find out, if a given
|
||||
/// certificate chain is beeing accepted by an client.
|
||||
/// </remarks>
|
||||
public interface ICertificateVerifyer
|
||||
{
|
||||
/// <param name="certs">The certs, which are part of the chain.</param>
|
||||
/// <returns>True, if the chain is accepted, false otherwise</returns>
|
||||
bool IsValid(X509CertificateStructure[] certs);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user