Mercurial > dropbear
view demos/test/mac_test.c @ 147:c2b93763dac9 libtomcrypt
Fixes for it to compile and work nicely with Dropbear.
In particular, OS X's 'ar' doesn't seem to like arrays
which don't have initialising values.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 19 Dec 2004 16:23:32 +0000 |
parents | 5d99163f7e32 |
children |
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; }