0

我在带有 OpenSSL 0.9.8w 的 Mac OS X 10.7.3 上安装了 xmlsec 1.2.12,安装后,在“make check”期间测试都被跳过了。

OpenSSL 0.9.8w 由安装

sudo ./config --prefix=/usr/local/ no-asm
sudo make install

xmlsec 1.2.12 由

sudo ./configure --with-openssl=/usr/local/
sudo make install

我在尝试签署 xml 时收到错误消息

func=xmlSecCryptoDLLibraryCreate:file=dl.c:line=146:obj=lt_dlopenext:subj=unknown:error=7:io function failed:filename=libxmlsec1-openssl
func=xmlSecCryptoDLGetLibraryFunctions:file=dl.c:line=498:obj=unknown:subj=xmlSecCryptoDLLibraryCreate:error=1:xmlsec library function failed:crypto=openssl
func=xmlSecCryptoDLLoadLibrary:file=dl.c:line=449:obj=unknown:subj=xmlSecCryptoDLGetLibraryFunctions:error=1:xmlsec library function failed:
Error: unable to load xmlsec-openssl library. Make sure that you have this it installed, check shared libraries path (LD_LIBRARY_PATH) envornment variable or use "--crypto" option to specify different crypto engine.
Error: initialization failed

我也试过 xmlsec 1.2.18 和 openssl 1.0.1b,但结果是一样的。有人在 Mac OS X 10.7.3 上成功安装了 xmlsec 吗?请给我一些建议。

4

1 回答 1

1

我使用 MacPorts 在 10.6、10.7 和 10.8 下安装 XMLSEC

MacPorts 在 /opt/local/lib 编译一个 openssl 包,所以我使用这个命令来签署一个 XML 文件,其中要签署的节点是“infNFe”:

export LD_LIBRARY_PATH=/opt/local/lib; /opt/local/bin/xmlsec1 sign --id-attr:Id infNFe --output signed_xmlsec.xml --pkcs12 yourCertificate.pfx --pwd thePasswordHere --trusted-pem yourCertificate.pem unsigned.xml

我认为这将解决您的问题。

于 2012-11-17T21:56:47.037 回答