java.lang.Object | |
↳ | sun.security.validator.Validator |
![]() |
Validator abstract base class. Concrete classes are instantiated by calling one of the getInstance() methods. All methods defined in this class must be safe for concurrent use by multiple threads.
The model is that a Validator instance is created specifying validation settings, such as trust anchors or PKIX parameters. Then one or more paths are validated using those parameters. In some cases, additional information can be provided per path validation. This is independent of the validation parameters and currently only used for TLS server validation.
Path validation is performed by calling one of the validate() methods. It specifies a suggested path to be used for validation if available, or only the end entity certificate otherwise. Optionally additional certificates can be specified that the caller believes could be helpful. Implementations are free to make use of this information or validate the path using other means. validate() also checks that the end entity certificate is suitable for the intended purpose as described below.
There are two orthogonal parameters to select the Validator implementation: type and variant. Type selects the validation algorithm. Currently supported are TYPE_SIMPLE and TYPE_PKIX. See SimpleValidator and PKIXValidator for details.
Variant controls additional extension checks. Currently supported are five variants:
Examples:
// instantiate validator specifying type, variant, and trust anchors Validator validator = Validator.getInstance(Validator.TYPE_PKIX, Validator.VAR_TLS_CLIENT, trustedCerts); // validate one or more chains using the validator validator.validate(chain); // throws CertificateException if failed
SimpleValidator
PKIXValidator
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | TYPE_PKIX | Constant for a validator of type PKIX. | |||||||||
String | TYPE_SIMPLE | Constant for a validator of type Simple. | |||||||||
String | VAR_CODE_SIGNING | Constant for a Code Signing variant of a validator. | |||||||||
String | VAR_GENERIC | Constant for a Generic variant of a validator. | |||||||||
String | VAR_JCE_SIGNING | Constant for a JCE Code Signing variant of a validator. | |||||||||
String | VAR_PLUGIN_CODE_SIGNING | Constant for a Code Signing variant of a validator for use by the J2SE Plugin/WebStart code. | |||||||||
String | VAR_TLS_CLIENT | Constant for a TLS Client variant of a validator. | |||||||||
String | VAR_TLS_SERVER | Constant for a TLS Server variant of a validator. | |||||||||
String | VAR_TSA_SERVER | Constant for a TSA Server variant of a validator. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get a new Validator instance using the provided PKIXBuilderParameters.
| |||||||||||
Get a new Validator instance using the Set of X509Certificates as trust
anchors.
| |||||||||||
Get a new Validator instance using the trusted certificates from the
specified KeyStore as trust anchors.
| |||||||||||
Returns an immutable Collection of the X509Certificates this instance
uses as trust anchors.
| |||||||||||
This method is deprecated.
No replacement.
| |||||||||||
Validate the given certificate chain.
| |||||||||||
Validate the given certificate chain.
| |||||||||||
Validate the given certificate chain.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Constant for a validator of type Simple.
Constant for a Code Signing variant of a validator.
Constant for a Generic variant of a validator.
Constant for a JCE Code Signing variant of a validator.
Constant for a Code Signing variant of a validator for use by the J2SE Plugin/WebStart code.
Constant for a TLS Client variant of a validator.
Constant for a TLS Server variant of a validator.
Constant for a TSA Server variant of a validator.
Get a new Validator instance using the provided PKIXBuilderParameters. This method can only be used with the PKIX validator.
Get a new Validator instance using the Set of X509Certificates as trust anchors.
Get a new Validator instance using the trusted certificates from the specified KeyStore as trust anchors.
Returns an immutable Collection of the X509Certificates this instance uses as trust anchors.
This method is deprecated.
No replacement.
Set the date to be used for subsequent validations. NOTE that this is not a supported API, it is provided to simplify writing tests only.
Validate the given certificate chain. If otherCerts is non-null, it is a Collection of additional X509Certificates that could be helpful for path building.
Parameter is an additional parameter with variant specific meaning. Currently, it is only defined for TLS_SERVER variant validators, where it must be non null and the name of the TLS key exchange algorithm being used (see JSSE X509TrustManager specification). In the future, it could be used to pass in a PKCS#7 object for code signing to check time stamps.
CertificateException |
---|
Validate the given certificate chain.
CertificateException |
---|
Validate the given certificate chain. If otherCerts is non-null, it is a Collection of additional X509Certificates that could be helpful for path building.
CertificateException |
---|