Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 RSA 使用 OpenSSL 解密一些东西。我想加载一个公钥。为此提供的默认函数是 PEM_read_RSA_PUBKEY() ,它需要一个文件描述符。
我想将键作为字符串嵌入到程序中。有什么办法可以做到这一点?
用于d2i_RSA_PUBKEY直接从包含二进制 DER 格式的缓冲区加载:
d2i_RSA_PUBKEY
const unsigned char *p = key; RSA *r = d2i_RSA_PUBKEY(NULL, &p, keylen);