diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2017-02-02 17:33:30 +0100 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2017-03-04 10:26:43 +0000 |
commit | 88ac77c0bc21accfd6f5c404217c3c2aaef2d674 (patch) | |
tree | e3dd6d0e25d7c5ea1b04887b24695329b22f47c1 /offapi/com | |
parent | ed0e8f970ff552e75222dc92ed2879aa3b3e5851 (diff) |
gpg4libre: List and view GPG keys
* Add GPG implementation of css::xml::crypto UNO interfaces (part of that is only stub atm)
* List gpg keys along with other certificates
* Viewing gpg certificates: Not all properties are implemented yet
Change-Id: I7f60b26efe949a94bf8fe1b8d4d428002c2995b1
Reviewed-on: https://gerrit.libreoffice.org/33843
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Siegmund Gorr <siegmund.gorr@cib.de>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'offapi/com')
5 files changed, 152 insertions, 0 deletions
diff --git a/offapi/com/sun/star/xml/crypto/gpg/GpgSEInitializer.idl b/offapi/com/sun/star/xml/crypto/gpg/GpgSEInitializer.idl new file mode 100644 index 000000000000..ac8fc58df9ad --- /dev/null +++ b/offapi/com/sun/star/xml/crypto/gpg/GpgSEInitializer.idl @@ -0,0 +1,28 @@ +/* -*- 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/. + */ + +#ifndef __com_sun_star_xml_crypto_gpg_GpgSEInitializer_idl_ +#define __com_sun_star_xml_crypto_gpg_GpgSEInitializer_idl_ + +#include <com/sun/star/xml/crypto/XSEInitializer.idl> + +module com { module sun { module star { module xml { module crypto { module gpg { + +/** + * Service implementing XSEInitializer + * + * @since LibreOffice 5.4 + */ +service GpgSEInitializer : XSEInitializer; + +} ; } ; } ; } ; } ; } ; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/xml/crypto/gpg/GpgSecurityEnvironment.idl b/offapi/com/sun/star/xml/crypto/gpg/GpgSecurityEnvironment.idl new file mode 100644 index 000000000000..ef82d8dba10a --- /dev/null +++ b/offapi/com/sun/star/xml/crypto/gpg/GpgSecurityEnvironment.idl @@ -0,0 +1,28 @@ +/* -*- 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/. + */ + +#ifndef __com_sun_star_xml_crypto_gpg_GpgSecurityEnvironment_idl_ +#define __com_sun_star_xml_crypto_gpg_GpgSecurityEnvironment_idl_ + +#include <com/sun/star/xml/crypto/XSecurityEnvironment.idl> + +module com { module sun { module star { module xml { module crypto { module gpg { + +/** + * Service implementing XSecurityEnvironment + * + * @since LibreOffice 5.4 + */ +service GpgSecurityEnvironment : XSecurityEnvironment; + +} ; } ; } ; } ; } ; } ; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/xml/crypto/gpg/GpgXMLEncryption.idl b/offapi/com/sun/star/xml/crypto/gpg/GpgXMLEncryption.idl new file mode 100644 index 000000000000..e9d00b253b7b --- /dev/null +++ b/offapi/com/sun/star/xml/crypto/gpg/GpgXMLEncryption.idl @@ -0,0 +1,34 @@ +/* -*- 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/. + */ + +#ifndef __com_sun_star_xml_crypto_gpg_GpgXMLEncryption_idl_ +#define __com_sun_star_xml_crypto_gpg_GpgXMLEncryption_idl_ + +#include <com/sun/star/uno/XInterface.idl> +#include <com/sun/star/uno/Exception.idl> +#include <com/sun/star/xml/crypto/XXMLEncryption.idl> +#include <com/sun/star/lang/XInitialization.idl> + +module com { module sun { module star { module xml { module crypto { module gpg { + +/** + * Service implementing XXMLEncryption + * + * @since LibreOffice 5.4 + */ +service GpgXMLEncryption { + interface com::sun::star::xml::crypto::XXMLEncryption ; + interface com::sun::star::lang::XInitialization ; +} ; + +} ; } ; } ; } ; } ; } ; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/xml/crypto/gpg/GpgXMLSecurityContext.idl b/offapi/com/sun/star/xml/crypto/gpg/GpgXMLSecurityContext.idl new file mode 100644 index 000000000000..2ada16f9d1ef --- /dev/null +++ b/offapi/com/sun/star/xml/crypto/gpg/GpgXMLSecurityContext.idl @@ -0,0 +1,28 @@ +/* -*- 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/. + */ + +#ifndef __com_sun_star_xml_crypto_gpg_GpgXMLSecurityContext_idl_ +#define __com_sun_star_xml_crypto_gpg_GpgXMLSecurityContext_idl_ + +#include <com/sun/star/xml/crypto/XXMLSecurityContext.idl> + +module com { module sun { module star { module xml { module crypto { module gpg { + +/** + * Service implementing XXMLSecurityContext + * + * @since LibreOffice 5.4 + */ +service GpgXMLSecurityContext : XXMLSecurityContext; + +} ; } ; } ; } ; } ; } ; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/xml/crypto/gpg/GpgXMLSignature.idl b/offapi/com/sun/star/xml/crypto/gpg/GpgXMLSignature.idl new file mode 100644 index 000000000000..eda73187126a --- /dev/null +++ b/offapi/com/sun/star/xml/crypto/gpg/GpgXMLSignature.idl @@ -0,0 +1,34 @@ +/* -*- 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/. + */ + +#ifndef __com_sun_star_xml_crypto_gpg_GpgXmlSignature_idl_ +#define __com_sun_star_xml_crypto_gpg_GpgXmlSignature_idl_ + +#include <com/sun/star/uno/XInterface.idl> +#include <com/sun/star/uno/Exception.idl> +#include <com/sun/star/xml/crypto/XXMLSignature.idl> +#include <com/sun/star/lang/XInitialization.idl> + +module com { module sun { module star { module xml { module crypto { module gpg { + +/** + * Service implementing XXMLSignature + * + * @since LibreOffice 5.4 + */ +service GpgXMLSignature { + interface com::sun::star::xml::crypto::XXMLSignature ; + interface com::sun::star::lang::XInitialization ; +} ; + +} ; } ; } ; } ; } ; } ; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |