如何使用 OpenSSL C 库将 RSA 密钥从二进制数据加载到 RSA 结构?

发布于 2024-08-26 00:24:18 字数 360 浏览 7 评论 0原文

目前,我将私钥保存在文件 private.key 中,并使用以下函数加载它:

RSA *r = PEM_read_RSAPrivateKey("private.key", NULL, NULL, NULL);

这工作得很好,但我对基于文件的格式不满意;我想将密钥以纯二进制形式(即,没有 base64 或类似形式)保存在 char* 变量中,并从中加载/保存密钥。这样我就有了更多的自由:我将能够将密钥直接存储到应用程序中 const char key[] { 0x01, 0x02, ... };,通过网络套接字发送它等等。

不幸的是,我还没有找到办法做到这一点。我所知道的保存和加载密钥的唯一方法是将其直接读取/保存到文件中。

Currently I have my private key saved in a file, private.key, and I use the following function to load it:

RSA *r = PEM_read_RSAPrivateKey("private.key", NULL, NULL, NULL);

This works perfectly but I'm not happy with the file-based format; I want to save my key in pure binary form (ie, no base64 or similar) in a char* variable and load/save the key from/to it. This way I have much more freedom: I'll be able to store the key directly into the application const char key[] { 0x01, 0x02, ... };, send it over a network socket, etc.

Unfortunately though I haven't found a way to do that. The only way to save and load a key I know of reads/saves it to a file directly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冷月断魂刀 2024-09-02 00:24:18

使用 d2i_RSAPrivateKey 直接从包含二进制 DER 格式的缓冲区加载:

const unsigned char *p = key;
RSA *r = d2i_RSAPrivateKey(NULL, &p, keylen);

Use d2i_RSAPrivateKey to load directly from a buffer containing binary DER format:

const unsigned char *p = key;
RSA *r = d2i_RSAPrivateKey(NULL, &p, keylen);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文