public abstract class CertPathValidatorSpi extends Object
CertPathValidator class to be implemented by security providers.| Constructor and Description |
|---|
CertPathValidatorSpi()
Creates a new
CertPathValidatorSpi instance. |
| Modifier and Type | Method and Description |
|---|---|
abstract CertPathValidatorResult |
engineValidate(CertPath certPath,
CertPathParameters params)
Validates the
CertPath with the algorithm of this CertPathValidator using the specified algorithm parameters. |
public CertPathValidatorSpi()
CertPathValidatorSpi instance.public abstract CertPathValidatorResult engineValidate(CertPath certPath, CertPathParameters params) throws CertPathValidatorException, InvalidAlgorithmParameterException
CertPath with the algorithm of this CertPathValidator using the specified algorithm parameters.certPath - the certification path to be validated.params - the certification path validator algorithm parameters.CertPathValidatorException - if the validation fails, or the algorithm of the specified
certification path cannot be validated using the algorithm of
this instance.InvalidAlgorithmParameterException - if the specified algorithm parameters cannot be used with
this algorithm.