[BACK]Return to umac128.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

File: [local] / src / usr.bin / ssh / umac128.c (download)

Revision 1.1, Tue Dec 12 15:06:12 2017 UTC (6 years, 5 months ago) by naddy
Branch: MAIN

Create a persistent umac128.c source file: #define the output size and
the name of the entry points for UMAC-128 before including umac.c.
Idea from FreeBSD.
ok dtucker@

/* $OpenBSD: umac128.c,v 1.1 2017/12/12 15:06:12 naddy 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

#include "umac.c"