HMAC-SHA1 with an MD5 key
#1
Hi all,
I would like to recover the key used to sign a message with HMAC-SHA1. I know the key was generated using MD5: 

PHP Code:
$hash = hash_hmac('sha1'$messagehash('md5'$keyfalse)) // Sample php code that generated the hash 

Lets say the original key is 5 characters long alpha only. That would be 26^5 combinations instead of 2^128.
Is it possible to use hashcat in that way ?

Thanks for your time.


Messages In This Thread
HMAC-SHA1 with an MD5 key - by johnbrizard51 - 10-01-2017, 04:22 AM
RE: HMAC-SHA1 with an MD5 key - by atom - 10-01-2017, 11:55 AM
RE: HMAC-SHA1 with an MD5 key - by johnbrizard51 - 10-01-2017, 04:30 PM
RE: HMAC-SHA1 with an MD5 key - by atom - 10-01-2017, 07:03 PM
RE: HMAC-SHA1 with an MD5 key - by johnbrizard51 - 10-03-2017, 07:14 PM