summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/gpg/XMLSignature.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/gpg/XMLSignature.cxx')
-rw-r--r--xmlsecurity/source/gpg/XMLSignature.cxx43
1 files changed, 0 insertions, 43 deletions
diff --git a/xmlsecurity/source/gpg/XMLSignature.cxx b/xmlsecurity/source/gpg/XMLSignature.cxx
deleted file mode 100644
index 6bebb698d434..000000000000
--- a/xmlsecurity/source/gpg/XMLSignature.cxx
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#include "XMLSignature.hxx"
-#include "SecurityEnvironment.hxx"
-#include "XMLSecurityContext.hxx"
-
-#include <cppuhelper/supportsservice.hxx>
-
-using namespace css::uno;
-using namespace css::lang;
-using namespace css::xml::wrapper;
-using namespace css::xml::crypto;
-
-XMLSignatureGpg::XMLSignatureGpg()
-{
-}
-
-XMLSignatureGpg::~XMLSignatureGpg()
-{
-}
-
-/* XXMLSignature */
-Reference< XXMLSignatureTemplate > SAL_CALL XMLSignatureGpg::generate(const Reference< XXMLSignatureTemplate >& /*aTemplate*/,
- const Reference< XSecurityEnvironment >& /*aEnvironment*/)
-{
- return nullptr;
-}
-
-/* XXMLSignature */
-Reference< XXMLSignatureTemplate > SAL_CALL XMLSignatureGpg::validate(const Reference< XXMLSignatureTemplate >& /*aTemplate*/,
- const Reference< XXMLSecurityContext >& /*aSecurityCtx*/)
-{
- return nullptr;
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */