Most visited

Recently visited

Added in API level 24

PKIXRevocationChecker.Option

public static final enum PKIXRevocationChecker.Option
extends Enum<PKIXRevocationChecker.Option>

java.lang.Object
   ↳ java.lang.Enum<java.security.cert.PKIXRevocationChecker.Option>
     ↳ java.security.cert.PKIXRevocationChecker.Option


可以为撤销检查机制指定各种撤销选项。

Summary

Enum values

PKIXRevocationChecker.Option  NO_FALLBACK

禁用回退机制。

PKIXRevocationChecker.Option  ONLY_END_ENTITY

只检查最终实体证书的撤销状态。

PKIXRevocationChecker.Option  PREFER_CRLS

倾向于OSCP的CRL。

PKIXRevocationChecker.Option  SOFT_FAIL

如果由于以下原因之一而无法确定吊销状态,请允许吊销检查成功:

  • The CRL or OCSP response cannot be obtained because of a network error. 

Public methods

static PKIXRevocationChecker.Option valueOf(String name)
static final Option[] values()

Inherited methods

From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum values

NO_FALLBACK

Added in API level 24
PKIXRevocationChecker.Option NO_FALLBACK

禁用回退机制。

ONLY_END_ENTITY

Added in API level 24
PKIXRevocationChecker.Option ONLY_END_ENTITY

只检查最终实体证书的撤销状态。

PREFER_CRLS

Added in API level 24
PKIXRevocationChecker.Option PREFER_CRLS

倾向于OSCP的CRL。 默认行为是偏好OCSP。 每个PKIX实施应记录其特定偏好规则和后备政策的更多细节。

SOFT_FAIL

Added in API level 24
PKIXRevocationChecker.Option SOFT_FAIL

如果由于以下原因之一而无法确定吊销状态,请允许吊销检查成功:

  • The CRL or OCSP response cannot be obtained because of a network error.
  • The OCSP responder returns one of the following errors specified in section 2.3 of RFC 2560: internalError or tryLater.

Note that these conditions apply to both OCSP and CRLs, and unless the NO_FALLBACK option is set, the revocation check is allowed to succeed only if both mechanisms fail under one of the conditions as stated above. Exceptions that cause the network errors are ignored but can be later retrieved by calling the getSoftFailExceptions method.

Public methods

valueOf

Added in API level 24
PKIXRevocationChecker.Option valueOf (String name)

Parameters
name String
Returns
PKIXRevocationChecker.Option

values

Added in API level 24
Option[] values ()

Returns
Option[]

Hooray!