Skip to content

Instantly share code, notes, and snippets.

@ericflo
Created November 22, 2010 01:00
Show Gist options
  • Save ericflo/709375 to your computer and use it in GitHub Desktop.
Save ericflo/709375 to your computer and use it in GitHub Desktop.
Just makin' sure I know how to create a hex digest for Camo from Python
>>> import hashlib
>>> import hmac
>>> digest_maker = hmac.new('0x24FEEDFACEDEADBEEFCAFE', '', hashlib.sha1)
>>> digest_maker.update('http://farm5.static.flickr.com/4116/4857328881_fefb8e2134_z.jpg')
>>> digest_maker.hexdigest()
'2731d77b436b8a78f4cbe3624d8088fd5262f996'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment