Last active
August 8, 2019 11:44
-
-
Save prime31/4750744 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ValidateGooglePlaySignature( $responseData, $signature, $publicKey, &$status, &$response ) | |
{ | |
$responseData = trim( $responseData ); | |
$signature = trim( $signature ); | |
$response = json_decode( $responseData ); | |
// Create an RSA key compatible with openssl_verify from our Google Play sig | |
$key = "-----BEGIN PUBLIC KEY-----\n". | |
chunk_split($publicKey, 64,"\n"). | |
'-----END PUBLIC KEY-----'; | |
$key = openssl_get_publickey( $key ); | |
// Pre-add signature to return array before we decode it | |
$retArray = array( 'signature' => $signature ); | |
//Signature should be in binary format, but it comes as BASE64. | |
$signature = base64_decode( $signature ); | |
//Verify the signature | |
$result = openssl_verify( $responseData, $signature, $key, OPENSSL_ALGO_SHA1 ); | |
$status = ( 1 === $result ) ? 1 : 0; | |
$retArray["status"] = $status; | |
return $retArray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this still the correct validation method?