Don't store an HMAC key for longer than we need
authorMatt Caswell <matt@openssl.org>
Fri, 3 Jan 2020 09:37:19 +0000 (09:37 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 7 Jan 2020 11:53:29 +0000 (11:53 +0000)
commit16d92fa873975b2a32d3ea01b7d63c64f7fd9ee7
tree64fded0988ef61a34ec01508d7c922fa4941f8ab
parent0fcc6e70bc8970c4aee5e55d517aa1cc522a3ee8
Don't store an HMAC key for longer than we need

The HMAC_CTX structure stores the original key in case the ctx is reused
without changing the key.

However, HMAC_Init_ex() checks its parameters such that the only code path
where the stored key is ever used is in the case where HMAC_Init_ex is
called with a NULL key and an explicit md is provided which is the same as
the md that was provided previously. But in that case we can actually reuse
the pre-digested key that we calculated last time, so we can refactor the
code not to use the stored key at all.

With that refactor done it is no longer necessary to store the key in the
ctx at all. This means that long running ctx's will not keep the key in
memory for any longer than required. Note though that the digested key
*is* still kept in memory for the duration of the life of the ctx.

Fixes #10743

Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10763)
crypto/hmac/hmac.c
crypto/hmac/hmac_local.h
test/hmactest.c