summaryrefslogtreecommitdiffstats
path: root/umac128.c
blob: f71792506264be065f5bf22774ae220661fe42a5 (plain)
1
2
3
4
5
6
7
8
9
10
/* $OpenBSD: umac128.c,v 1.2 2018/02/08 04:12:32 dtucker Exp $ */

#define UMAC_OUTPUT_LEN	16
#define umac_new	umac128_new
#define umac_update	umac128_update
#define umac_final	umac128_final
#define umac_delete	umac128_delete
#define umac_ctx	umac128_ctx

#include "umac.c"