2

这就是我所知道的:

生成 RSA 公钥和私钥

RSA *pRSA      = NULL;
EVP_PKEY* pKey = NULL;
pRSA = RSA_generate_key(2048,RSA_3,gen_callback,NULL);
pKey = EVP_PKEY_new();
if(pRSA && pKey && EVP_PKEY_assign_RSA(pKey,pRSA))
{
    /* pKey owns pRSA from now */
    if(RSA_check_key(pRSA) <= 0)
    {
        fprintf(stderr,"RSA_check_key failed.\n");
        EVP_PKEY_free(pKey);
        pKey = NULL;
    }
}

将密钥(EVP_KEY)转换为无符号字符,以便我可以存储到文件中。

注意:我确实知道如何写入和读取 PEM 文件,但是我想以这样一种方式实现它,以便我可以出于许多其他原因将密钥保存到我自己的文件格式中。

//Convert to public key

int pkeyLen;
unsigned char *ucBuf, *uctempBuf;
pkeyLen = i2d_PublicKey(pKey, NULL);
ucBuf = (unsigned char *)malloc(pkeyLen+1);
uctempBuf = ucBuf;
i2d_PublicKey(pKey, &uctempBuf);

//Convert to Private Key

int pkeyLen2;
unsigned char *ucBuf2, *uctempBuf2;
pkeyLen2 = i2d_PrivateKey(pKey, NULL);
ucBuf2 = (unsigned char *)malloc(pkeyLen2+1);
uctempBuf2 = ucBuf2;
i2d_PrivateKey(pKey, &uctempBuf2);

使用 RSA 加密消息

(encrypt_len2 = RSA_public_encrypt(strlen(msg),msg,(unsigned char*)encrypt2,pRSA, RSA_PKCS1_OAEP_PADDING)

我确实知道如何使用以下方法将 unsigned char 转换回 EVP:d2i_PublicKey & d2i_PrivateKey

然而,这是我不知道的,希望有人这样做:

如何将我的 EVP_KEY(公共和私有)转换回 RSA 结构

(例如:使用 RSA_generate_key 后返回的 RSA *pRSA)?

4

1 回答 1

0

终于找到了解决我的问题的方法。希望这能帮助那些和我面临同样问题的人。

char *ct = "This the clear text";
unsigned char *buf;   
unsigned char *buf2;
int lenss;
/* No error checking */
    buf =(unsigned char*) malloc(EVP_PKEY_size(rsaPubKey));
    buf2 =(unsigned char*) malloc(EVP_PKEY_size(rsaPubKey));

lenss = RSA_public_encrypt(strlen(ct)+1,(unsigned char*) ct, buf, rsaPubKey->pkey.rsa,RSA_PKCS1_PADDING);

if (lenss != EVP_PKEY_size(rsaPubKey))
{
    fprintf(stderr,"Error: ciphertext should match length of key\n");
    exit(1);
}

RSA_private_decrypt(lenss, buf, buf2, rsaPrivKey->pkey.rsa,RSA_PKCS1_PADDING);

printf("%s\n", buf2);

通过 openssl 示例目录中的代码之一找到了我的解决方案。:)

于 2013-02-24T16:29:46.393 回答