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

Annotation of src/usr.bin/ssh/umac128.c, Revision 1.2

1.2     ! dtucker     1: /* $OpenBSD: umac128.c,v 1.1 2017/12/12 15:06:12 naddy Exp $ */
1.1       naddy       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
1.2     ! dtucker     8: #define umac_ctx       umac128_ctx
1.1       naddy       9:
                     10: #include "umac.c"