module AndroidInAppBilling::Testing
Constants
- PRIVATE_KEY
Is used only for purchase data signing
- PUBLIC_KEY
Both public and private keys were generated using this code:
require ‘openssl’
key = OpenSSL::PKey::RSA.new(2048)
key.public_key.to_pem # => public key key.to_pem # => private key