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 /xmlsecurity/Library_xsec_gpg.mk | |
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 'xmlsecurity/Library_xsec_gpg.mk')
-rw-r--r-- | xmlsecurity/Library_xsec_gpg.mk | 58 |
1 files changed, 58 insertions, 0 deletions
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: |