我使用以下代码
在PHP中加密了一个字符串function encrypt($string, $publicKey)
{
openssl_public_encrypt($string, $cryptedText, $publicKey);
return base64_encode($cryptedText);
}
$publicKey = file_get_contents('public.crt');
$encryptedText = encrypt('Test', $publicKey);
这在PHP中工作正常,我可以使用公钥/私钥对加密/解密。
encryptedText发送到iOS应用程序,我想要解密相同的字符串,我尝试了多种方法,似乎没有任何工作,任何指针执行以下操作表示赞赏。