org.conscrypt.CertBlacklist Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qetcher-client-bundle Show documentation
Show all versions of qetcher-client-bundle Show documentation
Qetcher Java client, OSGi bundle, minimal dependencies
package org.conscrypt;
import java.math.BigInteger;
import java.security.PublicKey;
/**
* A set of certificates that are blacklisted from trust.
*/
public interface CertBlacklist {
/**
* Returns whether the given public key is in the blacklist.
*/
boolean isPublicKeyBlackListed(PublicKey publicKey);
/**
* Returns whether the given serial number is in the blacklist.
*/
boolean isSerialNumberBlackListed(BigInteger serial);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy