[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.1

1.1     ! naddy       1: /* $OpenBSD$ */
        !             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:
        !             9: #include "umac.c"