summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/helper/xsecsign.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-02-08 12:29:28 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-02-08 13:53:45 +0100
commit1eda4ad5bab6ac65c0c61bbbef6946129566b7cc (patch)
treef9fa712c38b2a56040746d024ddff2e47cf6a2ec /xmlsecurity/source/helper/xsecsign.cxx
parent4c411636d9f3e8be085ca02af6fad448838834b1 (diff)
xmlsecurity: initial WriteOOXMLSignature()
Change-Id: I368a0254a8c8eff0ec7c56ecec4c0a462ae32252
Diffstat (limited to 'xmlsecurity/source/helper/xsecsign.cxx')
-rw-r--r--xmlsecurity/source/helper/xsecsign.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/xmlsecurity/source/helper/xsecsign.cxx b/xmlsecurity/source/helper/xsecsign.cxx
index 29ea604eb788..8b658df31cb2 100644
--- a/xmlsecurity/source/helper/xsecsign.cxx
+++ b/xmlsecurity/source/helper/xsecsign.cxx
@@ -32,6 +32,7 @@
#include <stdio.h>
+using namespace com::sun::star;
namespace cssu = com::sun::star::uno;
namespace cssl = com::sun::star::lang;
namespace cssxc = com::sun::star::xml::crypto;
@@ -356,4 +357,11 @@ bool XSecController::WriteSignature(
return rc;
}
+bool XSecController::WriteOOXMLSignature(const uno::Reference<xml::sax::XDocumentHandler>& /*xDocumentHandler*/)
+{
+ bool bRet = false;
+
+ return bRet;
+}
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */