tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / xmlsecurity / source / gpg / XMLEncryption.cxx
blob98f7aa6dc46db58eaca2e618eef96d6b506fe6fb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include "XMLEncryption.hxx"
12 using namespace css::uno;
13 using namespace css::lang;
14 using namespace css::xml::crypto;
16 XMLEncryptionGpg::XMLEncryptionGpg() {
19 XMLEncryptionGpg::~XMLEncryptionGpg() {
22 /* XXMLEncryption */
23 Reference< XXMLEncryptionTemplate > SAL_CALL XMLEncryptionGpg::encrypt(const Reference< XXMLEncryptionTemplate >& /*aTemplate*/,
24 const Reference< XSecurityEnvironment >& /*aEnvironment*/)
26 return nullptr;
29 /* XXMLEncryption */
30 Reference< XXMLEncryptionTemplate > SAL_CALL XMLEncryptionGpg::decrypt(const Reference< XXMLEncryptionTemplate >& /*aTemplate*/,
31 const Reference< XXMLSecurityContext >& /*aSecurityCtx*/)
33 return nullptr;
36 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */