From efb24fc7bab19840d4959d22706719981dc8bac0 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Mon, 10 Jul 2017 10:38:26 +0200 Subject: tdf#109046 Show correct signature type for OpenPGP gpg4libre Change-Id: I9c05f68e16928d14a29058f5bb9aa35c90b8f48b Reviewed-on: https://gerrit.libreoffice.org/39744 Reviewed-by: Thorsten Behrens Tested-by: Thorsten Behrens --- xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx index 69a9a7d4ec60..85edf4391561 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx @@ -576,8 +576,11 @@ void DigitalSignaturesDialog::ImplFillSignaturesBox() // Decide type string. if (maSignatureManager.mxStore.is()) { + // OpenPGP + if (!rInfo.ouGpgCertificate.isEmpty()) + aType = "OpenPGP"; // XML based: XAdES or not. - if (!rInfo.ouCertDigest.isEmpty()) + else if (!rInfo.ouCertDigest.isEmpty()) aType = "XAdES"; else aType = "XML-DSig"; -- cgit v1.2.3