|
iText 7 7.1.11 API
|
Superclass for a series of certificate verifiers that will typically be used in a chain. More...
Public Member Functions |
|
| CertificateVerifier (iText.Signatures.CertificateVerifier verifier) | |
| Creates the final CertificateVerifier in a chain of verifiers. More... |
|
| virtual void | SetOnlineCheckingAllowed (bool onlineCheckingAllowed) |
| Decide whether or not online checking is allowed. More... |
|
| virtual IList< VerificationOK > | Verify (X509Certificate signCert, X509Certificate issuerCert, DateTime signDate) |
| Checks the validity of the certificate, and calls the next verifier in the chain, if any. More... |
|
Superclass for a series of certificate verifiers that will typically be used in a chain.
Superclass for a series of certificate verifiers that will typically be used in a chain. It wraps another CertificateVerifier that is the next element in the chain of which the verify() method will be called.
|
inline |
Creates the final CertificateVerifier in a chain of verifiers.
| verifier | the previous verifier in the chain |
|
inlinevirtual |
Decide whether or not online checking is allowed.
| onlineCheckingAllowed | a boolean indicating whether the certificate can be verified using online verification results. |
|
inlinevirtual |
Checks the validity of the certificate, and calls the next verifier in the chain, if any.
| signCert | the certificate that needs to be checked |
| issuerCert | its issuer |
| signDate | the date the certificate needs to be valid |
VerificationOK objects. The list will be empty if the certificate couldn't be verified.
Reimplemented in iText.Signatures.LtvVerifier, iText.Signatures.OCSPVerifier, iText.Signatures.CRLVerifier, and iText.Signatures.RootStoreVerifier.