Re: [PATCH v2 0/9] crypto: don't leak pointers to authenc keys

2018-03-30 Thread Herbert Xu
On Fri, Mar 23, 2018 at 12:42:15PM +0200, Tudor Ambarus wrote: > There are few places in crypto where we save pointers to the > authenc keys to a local variable of type struct crypto_authenc_keys > and we don't zeroize it after use. Fix all those cases and don't > leak pointers to the authenc keys.

[PATCH v2 0/9] crypto: don't leak pointers to authenc keys

2018-03-23 Thread Tudor Ambarus
There are few places in crypto where we save pointers to the authenc keys to a local variable of type struct crypto_authenc_keys and we don't zeroize it after use. Fix all those cases and don't leak pointers to the authenc keys. -- Changes in v2: - add commit message on each patch - add Jamie's a