我尝试使用OpenSSL实施RSA加密/解密。不幸的是,我的代码在解密期间失败了。
我正在使用Qt。所以这是我的代码:
QByteArray CryptRSA::rsaEncrypt(QByteArray input)
{
QByteArray result(RSA_size(rsaKey), '\0');
int encryptedBytes = RSA_public_encrypt(RSA_size(rsaKey) - 42, (unsigned char *)input.data(), (unsigned char *) result.data(), rsaKey, RSA_PKCS1_OAEP_PADDING);
if (encryptedBytes== -1)
{
qDebug() << "Error encrypting RSA Key:";
handleErrors();
return QByteArray();
}
else
{
return result;
}
}
QByteArray CryptRSA::rsaDecrypt(QByteArray input)
{
QByteArray result(RSA_size(rsaKey), '\0');
int decryptedBytes = RSA_private_decrypt(RSA_size(rsaKey) - 42, (unsigned char *)input.data(), (unsigned char *)result.data(), rsaKey, RSA_PKCS1_OAEP_PADDING);
if (decryptedBytes == -1)
{
qDebug() << "Error decrypting RSA Key.";
handleErrors();
return QByteArray();
}
else
{
result.resize(decryptedBytes);
return result;
}
}
这是错误:
error:0407A079:rsa routines:RSA_padding_check_PKCS1_OAEP:oaep decoding error
error:04065072:rsa routines:RSA_EAY_PRIVATE_DECRYPT:padding check failed
失败了:
RSA_private_decrypt(RSA_size(rsaKey) - 42, (unsigned char *)input.data(),
(unsigned char *)result.data(), rsaKey, RSA_PKCS1_OAEP_PADDING);
我尝试了几件事,但我找不到自己的错误。
答案 0 :(得分:1)
error:0407A079:rsa routines:RSA_padding_check_PKCS1_OAEP:oaep decoding error
error:04065072:rsa routines:RSA_EAY_PRIVATE_DECRYPT:padding check failed
如果RSA_public_encrypt
成功,则将result
数组的大小设置为encryptedBytes
。对RSA_private_decrypt
执行类似操作。
此外,还不清楚您尝试使用RSA_size(rsaKey) - 42
做什么。这看起来很奇怪。我希望它是input.size()
。但是我猜你知道你在用你的阵列做什么。
可能存在其他问题(例如公钥和私钥不匹配),但我们需要查看更多代码和参数。
此外,您应该使用EVP_*
接口。请参阅OpenSSL wiki上的EVP Asymmetric Encryption and Decryption of an Envelope。