HMAC-SHA1 with an MD5 key
#3
Thanks for your answer.

Unfortunately I think the key is more complex than what I expected.
If it's 10 characters long (upper case, lower case, digit) that would be 62^10. I might be able to reduce that with some rules but still too much to use maskprocessor I think.

Maybe I can write a custom kernel for that. Any tips on how to get started with custom kernel ?

BTW, could someone tell me the difference between these 2 hash modes ?
Code:
150 | HMAC-SHA1 (key = $pass)

160 | HMAC-SHA1 (key = $salt)


-m 150 seems 3 times slower than -m 160 in benchmark on my machine


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