사용자 도구

사이트 도구


hmac

HMAC

Python example

from hashlib import sha256
from hmac import HMAC
from base64 import b64encode
 
# encode message with HMAC_SHA1
hm = HMAC('secretKey', 'message', sha256)
 
# to hexdigit
hmac_auth = hm.hexdigest()
 
# or to base64 string
hmac_auth = b64encode(hm.digest())
hmac.txt · 마지막으로 수정됨: 2014/12/04 17:58 저자 kwon37xi