0

我有一个用 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 );

谢谢!!

4

0 回答 0