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
def verify_pem(cert_file, data, signature) | |
public_key = OpenSSL::PKey::RSA.new(cert_file) | |
return public_key.verify(OpenSSL::Digest::SHA1.new, Base64.decode64(signature), data) | |
end | |
def verify_pem_public(cert_file, data, signature) | |
public_key = OpenSSL::PKey::RSA.new(cert_file).public_key | |
return public_key.verify(OpenSSL::Digest::SHA1.new, Base64.decode64(signature), data) | |
end |
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
def callback_test | |
require 'openssl' | |
require 'base64' | |
# Pull the original signature | |
@signature = params[:signature] | |
# Capture all of our parameters | |
@parameters = params |
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
# @my_url = 'http://localhost:3000/zong/callback?consumerCurrency=USD&consumerPrice=9.9900&itemRef=9.9900_USD&method=MOBILE&msisdn=%2B15555550218&outPayment=6.1800+USD&signature=rYLptV7HOnSn82qEV6uYc01ZwO4iGMN3Phag2c5z85Gdp%2FnGJV4S51uRSnEjTm3%2BEP7mcAsP0wG06vro6XP2OR0yPL5ohxWTqpKKu8Q2uEOe5sIxU7zoaOowbILTVfaFP66yLRiKz%2Fnlqs3wRCY3HeqtuZQfm%2FNfdDruRo9cEnM%3D&signatureVersion=1&simulated=true&status=COMPLETED&transactionRef=1_2011_06191550' | |
def callback_test | |
require 'openssl' | |
require 'base64' | |
@parameters = params | |
@signature = params[:signature] | |
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
#!/usr/bin/python | |
import re | |
import sys | |
import base64 | |
import urllib | |
from M2Crypto import BIO, RSA, EVP | |
pem = """-----BEGIN PUBLIC KEY-----MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCt8WGFD2HH1sHbdtrZ0MspHueVDb2vjk2G11qLoxZiTehfRTmlKivFMkdC/4PMtF73Z4kjHDr+7lU9b4DmkcNyZ03DsrRtudY9cGWh0cYCCsODjScjSCKpfTPUj/3Rxe6hcqhfIWw3XuduaALBnT31NR499Qodp859RnBpuwSieQIDAQAB-----END PUBLIC KEY-----""" | |
bio = BIO.MemoryBuffer(pem) | |
rsa = RSA.load_pub_key_bio(bio) |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<responseMobilePaymentProcessEntrypoints xmlns="http://pay01.zong.com/zongpay" xsi:schemaLocation="http://pay01.zong.com/zongpay/zongpay.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<countryCode>US</countryCode> | |
<localCurrency>USD</localCurrency> | |
<exchangeRate>1.0000</exchangeRate> | |
<providers> | |
<provider id="31008" name="Boost"/> | |
<provider id="31011" name="Boost Unlimited"/> | |
<provider id="310120" name="Sprint"/> | |
<provider id="31012001" name="Virgin"/> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
-<responseMobilePaymentProcessEntrypoints xmlns="http://pay01.zong.com/zongpay" xsi:schemaLocation="http://pay01.zong.com/zongpay/zongpay.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><countryCode>US</countryCode><localCurrency>USD</localCurrency><exchangeRate>1.0000</exchangeRate>-<providers><provider id="31008" name="Boost"/><provider id="31011" name="Boost Unlimited"/><provider id="310120" name="Sprint"/><provider id="31012001" name="Virgin"/><provider id="310260" name="T-Mobile"/><provider id="310410" name="ATT"/><provider id="310500" name="Alltel"/><provider id="310680" name="Dobson"/><provider id="311280" name="Verizon"/><provider id="311580" name="US Cellular Corp."/><provider id="316010" name="Nextel"/></providers>-<items>-<item zongPlusOnly="false" itemRef="0.5000_USD" requestCurrencyOutpayment="0.2100" outPayment="0.2100" workingPrice="0.5000" exactPrice="0.5000" priceMatched="true"><supportedProviders all="true"/><entrypointUrl>https://pay01.zong |
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
=begin | |
The following class below works with Ruby v. 1.9.2 and can be used as a libs class with Ruby on Rails 3.x. | |
=end | |
require 'net/https' | |
require 'uri' | |
class Zong |
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
load 'deploy' if respond_to?(:namespace) # cap2 differentiator | |
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } | |
load 'config/deploy' |
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
require 'net/https' | |
require 'uri' | |
class Zong | |
def initialize(customer_key = nil) | |
@xml_data = <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<requestMobilePaymentProcessEntrypoints xmlns="http://pay01.zong.com/zongpay" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pay01.zong.com/zongpay/zongpay.xsd"> |
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
<? | |
// You can see the example lookup here: | |
// https://pay01.zong.com/zongpay/lookup.html | |
function getAvailablePricePoints($countries) { | |
//Get Price Look Up table per country in $countries | |
foreach ($countries as $countryCode) { | |
$requestXML = "<?xml version='1.0' encoding='UTF-8'?> | |
<requestMobilePaymentProcessEntrypoints xmlns='http://pay01.zong.com/zongpay' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://pay01.zong.com/zongpay/zongpay.xsd'> |