openssl RSA 内存读取密钥

Posted K.I.S.S.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openssl RSA 内存读取密钥相关的知识,希望对你有一定的参考价值。

主要注意一下密钥的格式

#include <openssl/pem.h>
#include <openssl/err.h>


bool CEncipher::CreatePubKey()
{
    BIO* bp = NULL;
    string strPublicKey = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCmm9GRVbi5+myHYztzOyWvMdo1\
                          4b0fwRF3va9A8bd19oW9ZUCpALVIC4d4I1Zvkfcgnpvswf/DOHD9umT+pevmwICF                          /mU8LNe/MT8kGh0IAIHdJVrXw/2TEWCVEgFlFfloWzCNmzOcx4BH8yIw50RjG1ED                          5Fl5QKFrirgcU11IhQIDAQAB";
    int nPublicKeyLen = strPublicKey.size();
    for(int i = 64; i < nPublicKeyLen; i+=64)
    {
        if(strPublicKey[i] != \n)
        {
            strPublicKey.insert(i, "\n");
        }
        i++;
    }
    strPublicKey.insert(0, "-----BEGIN PUBLIC KEY-----\n");
    strPublicKey.append("\n-----END PUBLIC KEY-----\n");

    char *chPublicKey = const_cast<char *>(strPublicKey.c_str());
    if ((bp = BIO_new_mem_buf(chPublicKey, -1)) == NULL)
    {     
        printf("BIO_new_mem_buf failed!\n");
        return false;
    }

    pPubKey_ = PEM_read_bio_RSA_PUBKEY(bp, NULL, NULL, NULL);

    if (NULL == pPubKey_)
    {
        ERR_load_crypto_strings();
        char errBuf[512];
        ERR_error_string_n(ERR_get_error(), errBuf, sizeof(errBuf));
        printf("load public key failed[%s]\n", errBuf);
        return false;
    }
    BIO_free_all(bp);

    return true;
}

 

以上是关于openssl RSA 内存读取密钥的主要内容,如果未能解决你的问题,请参考以下文章

为啥我无法使用 PEM_read_RSAPublicKey 读取 openssl 生成的 RSA pub 密钥?

在 C 中读取和写入 rsa 密钥到 pem 文件

为 RSA OpenSSL 设置特定密钥

OpenSSL笔记-生成RSA公私密钥以PEM格式到char*中(非保存为文件)

OpenSSL笔记-生成RSA公私密钥以PEM格式到char*中(非保存为文件)

php openssl生成的rsa密钥给android和ios使用注意哪些问题