org.bouncycastle.crypto.tls.CertificateVerifyer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. The package is organised
so that it contains a light-weight API suitable for use in any environment (including the newly released J2ME)
with the additional infrastructure to conform the algorithms to the JCE framework.
package org.bouncycastle.crypto.tls;
import org.bouncycastle.asn1.x509.X509CertificateStructure;
/**
* This should be implemented by any class which can find out, if a given
* certificate chain is beeing accepted by an client.
*/
public interface CertificateVerifyer
{
/**
* @param certs The certs, which are part of the chain.
* @return True, if the chain is accepted, false otherwise.
*/
public boolean isValid(X509CertificateStructure[] certs);
}