java.lang.Object java.security.cert.CRL
public abstract class CRL
此类是具有不同格式但很常用的证书撤消列表 (CRL) 的抽象。例如,所有 CRL 都具有列出已取消证书的功能,并且可以就是否列出了给定的证书进行查询。
通过扩展此抽象类可以定义专门的 CRL 类型。
X509CRL
,
CertificateFactory
构造方法摘要 | |
---|---|
protected |
CRL(String type) 创建指定类型的 CRL。 |
方法摘要 | |
---|---|
String |
getType() 返回此 CRL 的类型。 |
abstract boolean |
isRevoked(Certificate cert) 检查给定的证书是否在此 CRL 中。 |
abstract String |
toString() 返回此 CRL 的字符串表示形式。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
protected CRL(String type)
type
- CRL 类型的标准名称。有关标准 CRL 类型的信息,请参阅
Java Cryptography Architecture API Specification & Reference 中的附录 A。
方法详细信息 |
---|
public final String getType()
public abstract String toString()
public abstract boolean isRevoked(Certificate cert)
cert
- 要检查的证书。