aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto/gf128mul.h
diff options
context:
space:
mode:
authorAlex Cope <alexcope@google.com>2016-11-14 11:02:54 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-11-17 23:34:59 +0800
commit75aa0a7cafe951538c7cb7c5ed457a3371ec5bcd (patch)
tree9cbf746474322cb3dfab8ab135b01145f72508a3 /include/crypto/gf128mul.h
parenthwrng: atmel - use clk_disable_unprepare instead of clk_disable (diff)
downloadlinux-dev-75aa0a7cafe951538c7cb7c5ed457a3371ec5bcd.tar.xz
linux-dev-75aa0a7cafe951538c7cb7c5ed457a3371ec5bcd.zip
crypto: gf128mul - Zero memory when freeing multiplication table
GF(2^128) multiplication tables are typically used for secret information, so it's a good idea to zero them on free. Signed-off-by: Alex Cope <alexcope@google.com> Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/gf128mul.h')
-rw-r--r--include/crypto/gf128mul.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/gf128mul.h b/include/crypto/gf128mul.h
index b611aa99f9b4..592d47e565a8 100644
--- a/include/crypto/gf128mul.h
+++ b/include/crypto/gf128mul.h
@@ -177,7 +177,7 @@ void gf128mul_4k_bbe(be128 *a, struct gf128mul_4k *t);
static inline void gf128mul_free_4k(struct gf128mul_4k *t)
{
- kfree(t);
+ kzfree(t);
}