- 论坛徽章:
- 0
|
RSA *rsa=NULL;
printf("正在产生RSA密钥...");
rsa = RSA_generate_key(1024, RSA_F4, NULL, NULL);
if(rsa==NULL)
{
printf("gen rsa error\n");
return false;
}
// 公钥
BIO *bp = BIO_new(BIO_s_file());
if(BIO_write_filename(bp, "c:\\public.pem")<=0)
{
printf("write error\n");
return false;
}
if(PEM_write_bio_RSAPublicKey(bp, rsa)!=1)
{
printf("write public key error\n");
return false;
}
BIO_free_all(bp);
char passwd[]="1234";
// 私钥
bp = BIO_new_file("c:\\private.pem", "w+");
if(PEM_write_bio_RSAPrivateKey(bp, rsa, EVP_des_ede3(), (unsigned char*)passwd, 4, NULL, NULL)!=1)
{
printf("write public key error\n");
return false;
}
BIO_free_all(bp);
--------------------
经过测试应该是可以的 |
|