mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-03 00:02:05 +00:00
012e5cb839
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-Commit-ID: 463cfacfa07cb8060a4d4961e63dca307bf3f4b1
10 lines
243 B
C
10 lines
243 B
C
/* $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"
|