Fixed long key bug in HMAC calculation.

This commit is contained in:
Johny Mattsson 2015-07-23 16:48:59 +10:00
parent 00e1e6bcbe
commit b583af94a5
1 changed files with 1 additions and 1 deletions

View File

@ -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;