Commit b583af94 authored by Johny Mattsson's avatar Johny Mattsson
Browse files

Fixed long key bug in HMAC calculation.

parent 00e1e6bc
......@@ -140,7 +140,7 @@ int ICACHE_FLASH_ATTR crypto_hmac (const digest_mech_info_t *mi,
mi->update (ctx, key, key_len);
mi->finalize (digest, ctx);
key = digest;
key_len = mi->block_size;
key_len = mi->digest_size;
}
const size_t bs = mi->block_size;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment