summaryrefslogtreecommitdiffstats
path: root/xmlsecurity/inc/sigstruct.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/inc/sigstruct.hxx')
-rw-r--r--xmlsecurity/inc/sigstruct.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/xmlsecurity/inc/sigstruct.hxx b/xmlsecurity/inc/sigstruct.hxx
index c217352e5c7f..29eeb728c3b2 100644
--- a/xmlsecurity/inc/sigstruct.hxx
+++ b/xmlsecurity/inc/sigstruct.hxx
@@ -106,6 +106,8 @@ struct SignatureInformation
sal_Int32 nDigestID;
/// For PDF: has id-aa-signingCertificateV2 as a signed attribute.
bool bHasSigningCertificate;
+ /// For PDF: the byte range doesn't cover the whole document.
+ bool bPartialDocumentSignature;
SignatureInformation( sal_Int32 nId )
{
@@ -113,6 +115,7 @@ struct SignatureInformation
nStatus = css::xml::crypto::SecurityOperationStatus_UNKNOWN;
nDigestID = 0;
bHasSigningCertificate = false;
+ bPartialDocumentSignature = false;
}
};