summaryrefslogtreecommitdiff
path: root/umac.h
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2019-06-07 14:18:48 +0000
committerDarren Tucker <dtucker@dtucker.net>2019-06-08 00:49:26 +1000
commit4b7dd22b02b64b1ededd3c0e98a6e7ae21e31d38 (patch)
tree39417128dc0dc83c2fac68da2eedd01ae71eb712 /umac.h
parent130ef0695e1731392ca33831939fe89e8b70cc17 (diff)
upstream: Typo and spelling fixes in comments and error messages.
Patch from knweiss at gmail.com via -portable. OpenBSD-Commit-ID: 2577465442f761a39703762c4f87a8dfcb918b4b
Diffstat (limited to 'umac.h')
-rw-r--r--umac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/umac.h b/umac.h
index 7fb770f8a..4651f0d5a 100644
--- a/umac.h
+++ b/umac.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: umac.h,v 1.3 2013/07/22 12:20:02 djm Exp $ */ 1/* $OpenBSD: umac.h,v 1.4 2019/06/07 14:18:48 dtucker Exp $ */
2/* ----------------------------------------------------------------------- 2/* -----------------------------------------------------------------------
3 * 3 *
4 * umac.h -- C Implementation UMAC Message Authentication 4 * umac.h -- 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. 41 * rijndael-alg-fst.h.
42 * Brian Gladman's version is distributed with GNU Public lisence 42 * Brian Gladman's version is distributed with GNU Public license
43 * and can be found at http://fp.gladman.plus.com/AES/index.htm. It 43 * and can be found at http://fp.gladman.plus.com/AES/index.htm. It
44 * includes a fast IA-32 assembly version. 44 * includes a fast IA-32 assembly version.
45 * 45 *
@@ -107,7 +107,7 @@ int uhash_update(uhash_ctx_t ctx,
107 long len); 107 long len);
108 108
109int uhash_final(uhash_ctx_t ctx, 109int uhash_final(uhash_ctx_t ctx,
110 u_char ouput[]); 110 u_char output[]);
111 111
112int uhash(uhash_ctx_t ctx, 112int uhash(uhash_ctx_t ctx,
113 u_char *input, 113 u_char *input,