将 SSL 私钥转换为字符串
从 pkcs12 文件中,我使用以下命令提取了私钥和证书 - PKCS12_parse(p12, argv[2], &privatekey, &cert, &ca);
现在,我需要使用私钥和证书通过 xmlsec 库对 XML 进行签名。
但是,xmlSecCryptoAppKeyLoad() 需要 const char* 格式的密钥。
我该如何进行转换?
或者,我可以使用 xmlSecCryptoAppKeyLoadMemory() 和私钥而无需进行转换吗?
From pkcs12 file, I extracted the private key and cert using the following -
PKCS12_parse(p12, argv[2], &privatekey, &cert, &ca);
Now, I need to use the privatekey and cert to sign an XML using xmlsec libraries.
However, xmlSecCryptoAppKeyLoad() expects the key in const char* format.
How do I do the conversion?
Or, can I use xmlSecCryptoAppKeyLoadMemory() and privatekey without having to do the conversion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 XMLSEC-OpenSSL 接口,xmlSecOpenSSLEvpKeyAdopt() 函数从 OpenSSL
EVP_PKEY 加载 xmlsec 密钥对象*
和 xmlSecOpenSSLKeyDataX509AdoptKeyCert() 加载OpenSSL X509 证书。If you use the XMLSEC-OpenSSL interface, the xmlSecOpenSSLEvpKeyAdopt() function loads an xmlsec key object from an OpenSSL
EVP_PKEY *
, and xmlSecOpenSSLKeyDataX509AdoptKeyCert() loads an OpenSSL X509 certificate.