[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4092638.L73RGXcGnC@tachyon.chronox.de>
Date: Tue, 23 Dec 2014 09:34:03 +0100
From: Stephan Mueller <smueller@...onox.de>
To: 'Herbert Xu' <herbert@...dor.apana.org.au>
Cc: 'LKML' <linux-kernel@...r.kernel.org>, linux-crypto@...r.kernel.org
Subject: [PATCH] crypto: AF_ALG: zeroize key data
alg_setkey should zeroize the sensitive data after use.
Signed-off-by: Stephan Mueller <smueller@...onox.de>
---
crypto/af_alg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/af_alg.c b/crypto/af_alg.c
index a8ff3c4..76d739d 100644
--- a/crypto/af_alg.c
+++ b/crypto/af_alg.c
@@ -188,7 +188,7 @@ static int alg_setkey(struct sock *sk, char __user *ukey,
err = type->setkey(ask->private, key, keylen);
out:
- sock_kfree_s(sk, key, keylen);
+ sock_kzfree_s(sk, key, keylen);
return err;
}
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists