]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - crypto/openssh/umac128.c
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / crypto / openssh / umac128.c
1 /* $FreeBSD$ */
2 #define UMAC_OUTPUT_LEN         16
3 #undef umac_ctx
4 #define umac_ctx                umac128_ctx
5 #undef umac_new
6 #define umac_new                umac128_new
7 #undef umac_update
8 #define umac_update             umac128_update
9 #undef umac_final
10 #define umac_final              umac128_final
11 #undef umac_delete
12 #define umac_delete             umac128_delete
13 #include "umac.c"