任务是使用RSA公钥加密某些消息,该公钥位于.crt文件 - X509证书文件中。
如果出现以下问题,我会成功获取sertificate信息,但无法找到如何使用 x 中的公钥来使用RSA algorythm加密邮件的任何问题。
当我尝试使用关键数据创建BIO缓冲区并使用 PEM_read_bio_RSA_PUBKEY 函数将密钥写入 RSA 结构时,它会返回错误"错误:0906D06C:PEM例程:PEM_read_bio:没有开始行" 这清楚为什么会出现但不清楚如何正确解决。如果我没有创建另一个缓冲区并使用" ----- BEGIN RSA PUBLIC KEY -----" 和添加manualy行,我有什么问题可以加密" -----结束RSA公共密钥-----" ?
以下是我这份工作的代码:
unsigned char message[] = "Hello cryptographic world!";
unsigned char *encrypted_text;
int CyferWithHostKeyPub()
{
ERR_load_crypto_strings();
int res_length = 0;
RSA *public_key;
X509 *x;
BIO *fp = BIO_new_file("cert.crt", "r");
if (!fp)
{
printf("\nCan't open file.\n");
return -1;
}
x = PEM_read_bio_X509(fp, 0, 0, NULL);
if (!x) {
printf("%s\n", ERR_error_string(ERR_get_error(), NULL));
return 1;
}
BIO *membuf = BIO_new_mem_buf((void*)x->cert_info->key->public_key->data, x->cert_info->key->public_key->length);
public_key = PEM_read_bio_RSA_PUBKEY(membuf, &public_key, NULL, NULL);
if (!public_key) {
printf("%s\n", ERR_error_string(ERR_get_error(), NULL));
return 1;
}
int encrypted_length = RSA_size(public_key);
encrypted_text = new unsigned char[ encrypted_length ];
RSA_public_encrypt(sizeof(message), message, encrypted_text, public_key, RSA_PKCS1_PADDING);
RSA_free(public_key);
X509_free(x);
BIO_free(membuf);
BIO_free(fp);
return encrypted_length;
}
那么,我该怎么做呢?谢谢!
答案 0 :(得分:1)
使用X509_get_pubkey()
函数获取对EVP_PKEY
结构中包含的X509
结构的引用。然后,您可以使用EVP_PKEY_get1_RSA()
来获取对RSA结构的引用。
有关详细信息,请参见这些手册页:
https://www.openssl.org/docs/man1.1.0/crypto/X509_get_pubkey.html https://www.openssl.org/docs/man1.1.0/crypto/EVP_PKEY_get1_RSA.html