iText 8.0.5 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 (IX509Certificate signCert, IX509Certificate issuerCert, DateTime signDate) |
Checks the validity of the certificate, and calls the next verifier in the chain, if any. More... |
|
Package Attributes |
|
iText.Signatures.CertificateVerifier | verifier |
The previous CertificateVerifier in the chain of verifiers. More... |
|
bool | onlineCheckingAllowed = true |
Indicates if going online to verify a certificate is allowed. 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.
|
package |
Indicates if going online to verify a certificate is allowed.
|
package |
The previous CertificateVerifier in the chain of verifiers.