summaryrefslogtreecommitdiff
path: root/umac.c
diff options
context:
space:
mode:
Diffstat (limited to 'umac.c')
-rw-r--r--umac.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/umac.c b/umac.c
index 2a6b6ae6b..3d4e285bb 100644
--- a/umac.c
+++ b/umac.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: umac.c,v 1.18 2019/11/13 04:47:52 deraadt Exp $ */ 1/* $OpenBSD: umac.c,v 1.20 2020/03/13 03:17:07 djm Exp $ */
2/* ----------------------------------------------------------------------- 2/* -----------------------------------------------------------------------
3 * 3 *
4 * umac.c -- C Implementation UMAC Message Authentication 4 * umac.c -- C Implementation UMAC Message Authentication
@@ -39,7 +39,7 @@
39 * at http://www.esat.kuleuven.ac.be/~rijmen/rijndael/ (search for 39 * at http://www.esat.kuleuven.ac.be/~rijmen/rijndael/ (search for
40 * "Barreto"). The only two files needed are rijndael-alg-fst.c and 40 * "Barreto"). The only two files needed are rijndael-alg-fst.c and
41 * rijndael-alg-fst.h. Brian Gladman's version is distributed with the GNU 41 * rijndael-alg-fst.h. Brian Gladman's version is distributed with the GNU
42 * Public lisence at http://fp.gladman.plus.com/AES/index.htm. It 42 * Public license at http://fp.gladman.plus.com/AES/index.htm. It
43 * includes a fast IA-32 assembly version. The OpenSSL crypo library is 43 * includes a fast IA-32 assembly version. The OpenSSL crypo library is
44 * the third. 44 * the third.
45 * 45 *
@@ -1205,8 +1205,7 @@ int umac_delete(struct umac_ctx *ctx)
1205 if (ctx) { 1205 if (ctx) {
1206 if (ALLOC_BOUNDARY) 1206 if (ALLOC_BOUNDARY)
1207 ctx = (struct umac_ctx *)ctx->free_ptr; 1207 ctx = (struct umac_ctx *)ctx->free_ptr;
1208 explicit_bzero(ctx, sizeof(*ctx) + ALLOC_BOUNDARY); 1208 freezero(ctx, sizeof(*ctx) + ALLOC_BOUNDARY);
1209 free(ctx);
1210 } 1209 }
1211 return (1); 1210 return (1);
1212} 1211}