summaryrefslogtreecommitdiff
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 ab455d555953..c217352e5c7f 100644
--- a/xmlsecurity/inc/sigstruct.hxx
+++ b/xmlsecurity/inc/sigstruct.hxx
@@ -104,12 +104,15 @@ struct SignatureInformation
css::uno::Sequence<sal_Int8> aSignatureBytes;
/// For PDF: digest format, from css::xml::crypto::DigestID
sal_Int32 nDigestID;
+ /// For PDF: has id-aa-signingCertificateV2 as a signed attribute.
+ bool bHasSigningCertificate;
SignatureInformation( sal_Int32 nId )
{
nSecurityId = nId;
nStatus = css::xml::crypto::SecurityOperationStatus_UNKNOWN;
nDigestID = 0;
+ bHasSigningCertificate = false;
}
};