summaryrefslogtreecommitdiff
path: root/xmlsecurity/inc
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2021-02-24 19:18:51 +0100
committerMichael Stahl <michael.stahl@allotropia.de>2021-03-03 12:47:04 +0100
commit5af5ea893bcb8a8eb472ac11133da10e5a604e66 (patch)
treed89e39aa0a98b05ca66b32597e06ae056ad1fdb4 /xmlsecurity/inc
parent9e82509b09f5fe2eb77bcdb8fd193c71923abb67 (diff)
xmlsecurity: improve handling of multiple certificates per X509Data
It turns out that an X509Data element can contain an arbitrary number of each of its child elements. How exactly certificates of an issuer chain may or should be distributed across multiple X509Data elements isn't terribly obvious. One thing that is clear is that any element that refers to or contains one particular certificate has to be a child of the same X509Data element, although in no particular order, so try to match the 2 such elements that the parser supports in XSecController::setX509Data(). Presumably the only way it makes sense to have multiple signing certificates is if they all contain the same key but are signed by different CAs. This case isn't handled currently; CheckX509Data() will complain there's not a single chain and validation of the certificates will fail. Change-Id: I9633a980b0c18d58dfce24fc59396a833498a77d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111500 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'xmlsecurity/inc')
-rw-r--r--xmlsecurity/inc/xsecctl.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmlsecurity/inc/xsecctl.hxx b/xmlsecurity/inc/xsecctl.hxx
index 698b1eb72c6f..9fa4fec004a0 100644
--- a/xmlsecurity/inc/xsecctl.hxx
+++ b/xmlsecurity/inc/xsecctl.hxx
@@ -262,7 +262,9 @@ private:
sal_Int32 nDigestID );
void setReferenceCount() const;
- void setX509Data(SignatureInformation::X509Data const& rData);
+ void setX509Data(
+ std::vector<std::pair<OUString, OUString>> & rX509IssuerSerials,
+ std::vector<OUString> const& rX509Certificates);
void setX509CertDigest(
OUString const& rCertDigest, sal_Int32 const nReferenceDigestID,
std::u16string_view const& rX509IssuerName, std::u16string_view const& rX509SerialNumber);