summaryrefslogtreecommitdiffstats
path: root/decode-qr-uri.py
diff options
context:
space:
mode:
Diffstat (limited to 'decode-qr-uri.py')
-rwxr-xr-xdecode-qr-uri.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/decode-qr-uri.py b/decode-qr-uri.py
index 493f086..1f0489d 100755
--- a/decode-qr-uri.py
+++ b/decode-qr-uri.py
@@ -70,6 +70,8 @@ logging.debug("KDF Output: 0x%s", key.hex())
macedPayload = o.query[0:o.query.rfind('&')] # mac is last param, so can remove it this way
hmacKey = key[16:48]
+logging.debug("HMAC Key: 0x%s", hmacKey.hex())
+
hmacer = hmac.new(hmacKey, digestmod=hashlib.sha256)
hmacer.update(macedPayload.encode('utf-8'))
hmacDigest = hmacer.digest()