django.utils.http.urlencode.encode - python examples

Here are the examples of the python api django.utils.http.urlencode.encode taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

0 View Complete Implementation : utils.py
Copyright MIT License
Author : Bearle
def create_ipn_hmac(request):
    ipn_secret = getattr(settings, 'COINPAYMENTS_IPN_SECRET', None)
    encoded = urlencode(request).encode('utf-8')
    hash = hmac.new(bytearray(ipn_secret, 'utf-8'), encoded, hashlib.sha512).hexdigest()
    return hash