]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - umac128.c
Vendor import of OpenSSH 7.7p1.
[FreeBSD/FreeBSD.git] / umac128.c
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"