diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-04-25 21:21:23 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-04-26 08:37:22 +0200 |
commit | f6e49f8f206a7b2f0691824be06a120174ae83d9 (patch) | |
tree | 227bbed0d4495c95471ec28e11e2335ffd376df6 /xmlsecurity/util | |
parent | ebd7dbb6e758ccf8f00cc6f631e78134d8b9f7bc (diff) |
xmlsecurity mscrypto: create SEInitializer instances with a constructor
Allows getting rid of the xsec_mscrypt / xsec_nss factory constructs.
Change-Id: Idcc3351f7cc3b37a65e6f78018f062439e48bc3d
Reviewed-on: https://gerrit.libreoffice.org/53463
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'xmlsecurity/util')
-rw-r--r-- | xmlsecurity/util/xsec_xmlsec.windows.component | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xmlsecurity/util/xsec_xmlsec.windows.component b/xmlsecurity/util/xsec_xmlsec.windows.component index a9f94f8b3960..6ea539f9ee0f 100644 --- a/xmlsecurity/util/xsec_xmlsec.windows.component +++ b/xmlsecurity/util/xsec_xmlsec.windows.component @@ -19,10 +19,12 @@ <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" prefix="xsec_xmlsec" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.xml.security.bridge.xmlsec.NSSInitializer_NssImpl"> + <implementation name="com.sun.star.xml.crypto.NSSInitializer" + constructor="com_sun_star_xml_crypto_NSSInitializer_get_implementation"> <service name="com.sun.star.xml.crypto.NSSInitializer"/> </implementation> - <implementation name="com.sun.star.xml.security.bridge.xmlsec.SEInitializer_MSCryptImpl"> + <implementation name="com.sun.star.xml.crypto.SEInitializer" + constructor="com_sun_star_xml_crypto_SEInitializer_get_implementation"> <service name="com.sun.star.xml.crypto.SEInitializer"/> </implementation> <implementation name="com.sun.star.xml.security.SEInitializer_Gpg"> |