使用php中生成的RSA私钥在c中加密

时间:2012-11-14 18:07:55

标签: php c encryption openssl private-key

我在php中使用openssl_pkey_new()生成了一个RSA私钥。我将其保存在txt文件中。在c中使用该密钥进行解密是否可行。 我试过这个但没有成功:

RSA *r = PEM_read_RSAPrivateKey("C:/xampp/htdocs/RSA/daten.txt", NULL, NULL, NULL);
resultDecrypt = RSA_private_decrypt( 128 /* resultEncrypt*/ , encrypted, decrypted, r, RSA_PKCS1_OAEP_PADDING);
printf("%d from decrypt: '%s'\n", resultDecrypt, decrypted);
RSA_free ( r );

谢谢!

0 个答案:

没有答案