Package com.pdftools.signaturevalidation
Class SignatureContent
- java.lang.Object
-
- com.pdftools.internal.NativeBase
-
- com.pdftools.internal.NativeObject
-
- com.pdftools.signaturevalidation.SignatureContent
-
- Direct Known Subclasses:
CmsSignatureContent
,TimeStampContent
,UnsupportedSignatureContent
public abstract class SignatureContent extends NativeObject
Cryptographic signature data and validation result
Encapsulates the cryptographic details and validation outcome of a digital signature. The class provides the technical validation status of the cryptographic signature.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConstraintResult
getValidity()
Technical validity of the cryptographic signature (Getter)-
Methods inherited from class com.pdftools.internal.NativeObject
equals, hashCode
-
-
-
-
Method Detail
-
getValidity
public ConstraintResult getValidity()
Technical validity of the cryptographic signature (Getter)
Indicates whether the cryptographic signature is valid based on the applied validation profile. For a complete validity assessment, it is also necessary to confirm thatpdftools.pdf.SignedSignatureField.getIsFullRevisionCovered
istrue
, ensuring the signature covers the entire document revision.
-
-