-
-
Save danfairs/c374960d9c22861807861bf5db99d9ca 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
import base64 | |
import hashlib | |
import hmac | |
import simplejson as json | |
def base64_url_decode(inp): | |
padding_factor = (4 - len(inp) % 4) % 4 | |
inp += "="*padding_factor | |
return base64.b64decode(unicode(inp).translate(dict(zip(map(ord, u'-_'), u'+/')))) | |
def parse_signed_request(signed_request, secret): | |
l = signed_request.split('.', 2) | |
encoded_sig = l[0] | |
payload = l[1] | |
sig = base64_url_decode(encoded_sig) | |
data = json.loads(base64_url_decode(payload)) | |
if data.get('algorithm').upper() != 'HMAC-SHA256': | |
log.error('Unknown algorithm') | |
return None | |
else: | |
expected_sig = hmac.new(secret, msg=payload, digestmod=hashlib.sha256).digest() | |
if sig != expected_sig: | |
return None | |
else: | |
log.debug('valid signed request received..') | |
return data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment