Added in API level 24

PKIXReason

class PKIXReason : CertPathValidatorException.Reason
kotlin.Any
   ↳ kotlin.Enum<java.security.cert.PKIXReason>
   ↳ java.security.cert.PKIXReason

The PKIXReason enumerates the potential PKIX-specific reasons that an X.509 certification path may be invalid according to the PKIX (RFC 5280) standard. These reasons are in addition to those of the CertPathValidatorException.BasicReason enumeration.

Summary

Enum values

The certificate's key usage is invalid.

The name constraints have been violated.

The policy constraints have been violated.

The certificate does not chain correctly.

The certificate is not a CA certificate.

No acceptable trust anchor found.

The path length constraint has been violated.

The certificate contains one or more unrecognized critical extensions.

Enum values

INVALID_KEY_USAGE

Added in API level 24
enum val INVALID_KEY_USAGE : PKIXReason

The certificate's key usage is invalid.

INVALID_NAME

Added in API level 24
enum val INVALID_NAME : PKIXReason

The name constraints have been violated.

INVALID_POLICY

Added in API level 24
enum val INVALID_POLICY : PKIXReason

The policy constraints have been violated.

NAME_CHAINING

Added in API level 24
enum val NAME_CHAINING : PKIXReason

The certificate does not chain correctly.

NOT_CA_CERT

Added in API level 24
enum val NOT_CA_CERT : PKIXReason

The certificate is not a CA certificate.

NO_TRUST_ANCHOR

Added in API level 24
enum val NO_TRUST_ANCHOR : PKIXReason

No acceptable trust anchor found.

PATH_TOO_LONG

Added in API level 24
enum val PATH_TOO_LONG : PKIXReason

The path length constraint has been violated.

UNRECOGNIZED_CRIT_EXT

Added in API level 24
enum val UNRECOGNIZED_CRIT_EXT : PKIXReason

The certificate contains one or more unrecognized critical extensions.