summaryrefslogtreecommitdiff
path: root/umac128.c
diff options
context:
space:
mode:
Diffstat (limited to 'umac128.c')
-rw-r--r--umac128.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/umac128.c b/umac128.c
new file mode 100644
index 000000000..f71792506
--- /dev/null
+++ b/umac128.c
@@ -0,0 +1,10 @@
1/* $OpenBSD: umac128.c,v 1.2 2018/02/08 04:12:32 dtucker Exp $ */
2
3#define UMAC_OUTPUT_LEN 16
4#define umac_new umac128_new
5#define umac_update umac128_update
6#define umac_final umac128_final
7#define umac_delete umac128_delete
8#define umac_ctx umac128_ctx
9
10#include "umac.c"