Mercurial > dropbear
view demos/test/mac_test.c @ 50:c61e66431001 libtomcrypt
Merge of the normal Dropbear makefile:
- Don't include mpi.o, since it does Bad Things (tm) (wrt LTM)
- Don't try to make clean in tests if it doesn't exist (infinite looping
makefiles, mmmmm)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 07 Aug 2004 16:33:31 +0000 |
parents | 6362d3854bb4 |
children | 5d99163f7e32 |
line wrap: on
line source
/* test pmac/omac/hmac */ #include "test.h" int mac_test(void) { DO(hmac_test()); DO(pmac_test()); DO(omac_test()); DO(eax_test()); DO(ocb_test()); return 0; }