I'm working on the security of the in-app billing in my application.

I do the verification on the server, which is in c++.

which ways are possible to verify it in c++?

can I use openssl command?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can use the OpenSSL library. The response that your app receives from the Market is a string of JSON data and a signature string which is created using the private key for the public key that is in your developer profile. You should keep that public key on your server, then your app can pass on the JSON string and signature to your server for verification.

The signature string is a base-64 encoded SHA1-with-RSA signature with PKCS#1 padding. You should be able to verify it in a C++ program using the OpenSSL EVP_Verify... functions: http://www.openssl.org/docs/crypto/evp.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.