Package org.conscrypt
Interface CertBlocklist
-
public interface CertBlocklistA set of certificates that are blacklisted from trust.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisPublicKeyBlockListed(java.security.PublicKey publicKey)Returns whether the given public key is in the blacklist.booleanisSerialNumberBlockListed(java.math.BigInteger serial)Returns whether the given serial number is in the blacklist.
-
-
-
Method Detail
-
isPublicKeyBlockListed
boolean isPublicKeyBlockListed(java.security.PublicKey publicKey)
Returns whether the given public key is in the blacklist.
-
isSerialNumberBlockListed
boolean isSerialNumberBlockListed(java.math.BigInteger serial)
Returns whether the given serial number is in the blacklist.
-
-