Skip to content

Commit 73e5984

Browse files
jvdsnherbertx
authored andcommitted
crypto: ecdh - explicitly zeroize private_key
private_key is overwritten with the key parameter passed in by the caller (if present), or alternatively a newly generated private key. However, it is possible that the caller provides a key (or the newly generated key) which is shorter than the previous key. In that scenario, some key material from the previous key would not be overwritten. The easiest solution is to explicitly zeroize the entire private_key array first. Note that this patch slightly changes the behavior of this function: previously, if the ecc_gen_privkey failed, the old private_key would remain. Now, the private_key is always zeroized. This behavior is consistent with the case where params.key is set and ecc_is_key_valid fails. Signed-off-by: Joachim Vandersmissen <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent 5adf213 commit 73e5984

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crypto/ecdh.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ static int ecdh_set_secret(struct crypto_kpp *tfm, const void *buf,
3333
params.key_size > sizeof(u64) * ctx->ndigits)
3434
return -EINVAL;
3535

36+
memset(ctx->private_key, 0, sizeof(ctx->private_key));
37+
3638
if (!params.key || !params.key_size)
3739
return ecc_gen_privkey(ctx->curve_id, ctx->ndigits,
3840
ctx->private_key);

0 commit comments

Comments
 (0)