From 88ac77c0bc21accfd6f5c404217c3c2aaef2d674 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Thu, 2 Feb 2017 17:33:30 +0100 Subject: 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 Reviewed-by: Siegmund Gorr Reviewed-by: Thorsten Behrens --- xmlsecurity/Library_xsec_gpg.mk | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 xmlsecurity/Library_xsec_gpg.mk (limited to 'xmlsecurity/Library_xsec_gpg.mk') diff --git a/xmlsecurity/Library_xsec_gpg.mk b/xmlsecurity/Library_xsec_gpg.mk new file mode 100644 index 000000000000..7f6e814e651a --- /dev/null +++ b/xmlsecurity/Library_xsec_gpg.mk @@ -0,0 +1,58 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# 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/. +# + +$(eval $(call gb_Library_Library,xsec_gpg)) + +$(eval $(call gb_Library_set_componentfile,xsec_gpg,xmlsecurity/util/xsec_gpg)) + +$(eval $(call gb_Library_set_include,xsec_gpg,\ + $$(INCLUDE) \ + -I$(SRCDIR)/xmlsecurity/inc \ + -I$(SRCDIR)/xmlsecurity/source/gpg \ +)) + +$(eval $(call gb_Library_add_defs,xsec_gpg,\ + -DXSECFW_DLLIMPLEMENTATION \ + -DXMLSEC_CRYPTO_GPG \ +)) + +$(eval $(call gb_Library_use_custom_headers,xsec_gpg,\ + officecfg/registry \ +)) + +$(eval $(call gb_Library_use_sdk_api,xsec_gpg)) + +$(eval $(call gb_Library_set_precompiled_header,xsec_gpg,$(SRCDIR)/xmlsecurity/inc/pch/precompiled_xsec_gpg)) + +$(eval $(call gb_Library_use_externals,xsec_gpg,gpgmepp)) + +$(eval $(call gb_Library_use_libraries,xsec_gpg,\ + comphelper \ + cppu \ + cppuhelper \ + sal \ + svl \ + tl \ + xo \ + $(gb_UWINAPI) \ +)) + +$(eval $(call gb_Library_add_exception_objects,xsec_gpg,\ + xmlsecurity/source/gpg/CertificateImpl \ + xmlsecurity/source/gpg/CipherContext \ + xmlsecurity/source/gpg/DigestContext \ + xmlsecurity/source/gpg/GpgComponentFactory \ + xmlsecurity/source/gpg/SecurityEnvironment \ + xmlsecurity/source/gpg/SEInitializer \ + xmlsecurity/source/gpg/XMLEncryption \ + xmlsecurity/source/gpg/XMLSecurityContext \ + xmlsecurity/source/gpg/XMLSignature \ +)) + +# vim: set noet sw=4 ts=4: -- cgit