freebsd-src/crypto/openssh/umac128.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
398 B
C
Raw Normal View History

2018-05-06 12:27:04 +00:00
/* $OpenBSD: umac128.c,v 1.2 2018/02/08 04:12:32 dtucker Exp $ */
2018-05-11 13:22:43 +00:00
/* undo ssh_namespace.h munging */
#undef umac_new
#undef umac_update
#undef umac_final
#undef umac_delete
2018-05-11 13:22:43 +00:00
#undef umac_ctx
2018-05-06 12:27:04 +00:00
#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"