Skip to content

Instantly share code, notes, and snippets.

View elricstorm's full-sized avatar

Joel Dezenzio elricstorm

View GitHub Profile
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
def callback_test
require 'openssl'
require 'base64'
# Pull the original signature
@signature = params[:signature]
# Capture all of our parameters
@parameters = params
# @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]
#!/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)
<?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"/>
<?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
=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
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
load 'config/deploy'
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">
<?
// 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'>