Hashpup2222
Active member
from Crypto.Hash import HMAC
secret_key='secret'
message='message'
h=HMAC.new(secret_key)
h.update(message)
print h.hexdigest()
python hmac_example.py
7e0d0767775312154ba16fd3af9771a2 <<<------------- HASH
how can i use the hash verifier, with HMAC
is it
7e0d0767775312154ba16fd3af9771a2:secret
or
7e0d0767775312154ba16fd3af9771a2:message
because im not finding success on verifying and additionally can HMAC be cracked?
secret_key='secret'
message='message'
h=HMAC.new(secret_key)
h.update(message)
print h.hexdigest()
python hmac_example.py
7e0d0767775312154ba16fd3af9771a2 <<<------------- HASH
how can i use the hash verifier, with HMAC
is it
7e0d0767775312154ba16fd3af9771a2:secret
or
7e0d0767775312154ba16fd3af9771a2:message
because im not finding success on verifying and additionally can HMAC be cracked?