我正在我的 android 应用程序中开发 IAB v3。每次成功购买后,我希望我的应用程序将签名数据和签名发送回我的 php 服务器,以通过谷歌开发者控制台生成的公钥进行验证。我找到了以下代码。
<?php
// $data and $signature are assumed to contain the data and the signature
// fetch public key from certificate and ready it
$fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
$cert = fread($fp, 8192);
fclose($fp);
$pubkeyid = openssl_get_publickey($cert);
// state whether signature is okay or not
$ok = openssl_verify($data, $signature, $pubkeyid);
if ($ok == 1) {
echo "good";
} elseif ($ok == 0) {
echo "bad";
} else {
echo "ugly, error checking signature";
}
// free the key from memory
openssl_free_key($pubkeyid);
?>
现在我有一个问题。google 给出的公钥是 String Base64 Encoded。我不知道如何将该字符串键转换为“.pem”格式。
如果我在上面的代码中将 Base64 Encoded 密钥设置为“$pubkeyid”。将发出警告。
Warning: openssl_verify() [function.openssl-verify]: supplied key param cannot be coerced into a public key in myxxx.php.
如何将我的字符串 Base64 编码公钥转换为 php 接受格式?
有没有人有以上经验或解决方法?请帮忙。非常感谢。