2012年5月10日 星期四

Hashing in Python



hashlib 裡面有md5 和sha可以使用
以下為範例

'''
Created on 2012-5-11

@author: cnp
'''

import hashlib

import hmac

x= hashlib.md5("MACA")

print x.hexdigest()

x= hashlib.sha256("udacity")

print x.hexdigest()

x= hmac.new("Secret", "HAHA").hexdigest()

print x







output:

19e165f571d62cbd06b97cc1413c86e2
6b63aae7ade6895dd8cd5b2621dccd546e278398
0224daa3a5efbaaa2414745183e20646



沒有留言:

張貼留言