我正在尝试从模数类型char []生成一个rsa公钥,现在我的指数是RSA_F4(65537);
但是,当我尝试使用“n”和“e”的值生成我的公钥时,RSA_public_encrypt,返回-1;
谢谢!
我的代码:
#include dio.h>
#include
最佳答案
你可能想要一些看起来更像的东西:
原文链接:https://www.f2er.com/linux/440688.htmlRSA *pubkey = RSA_new();
int len = BN_hex2bn(&pubkey->n,(const char *)p);
if (len == 0 || p[len])
fprintf(stderr,"'%s' does not appear to be a valid modulus\n",p);
BN_hex2bn(&pubkey->e,"010001");
编辑
您的代码工作正常,错误检查除外. RSA_public_encrypt在成功时返回密文的大小,而不是0,因此为了使上面的代码工作,在if行中添加< = 0测试:
if (RSA_public_encrypt(....) <= 0)