将 SSL 私钥转换为字符串

发布于 2024-09-11 04:47:22 字数 283 浏览 6 评论 0原文

从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩于岁月 2024-09-18 04:47:22

如果您使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文