Syntax Error.

[Sy] HMAC-SHA-256 を計算するサンプル(Python)

2018/01/20

HMAC-SHA-256Python で計算するサンプルコードです。

サンプルコード

hmac_test.py というファイル名で保存します。

(hmac_test.py)

import hashlib
import hmac

secretKey = b'secret key'
payload = b'Hello World!'

signature = hmac.new(secretKey, payload, hashlib.sha256).hexdigest()

print(signature)

実行&結果

$ python hmac_test.py
e3140f6d0e6ba8608551454bce0a6d19268021165da2a9343e8b29f43ab48a3a