comparison demos/test/mac_test.c @ 15:6362d3854bb4 libtomcrypt-orig

0.96 release of LibTomCrypt
author Matt Johnston <matt@ucc.asn.au>
date Tue, 15 Jun 2004 14:07:21 +0000
parents
children 5d99163f7e32
comparison
equal deleted inserted replaced
3:7faae8f46238 15:6362d3854bb4
1 /* test pmac/omac/hmac */
2 #include "test.h"
3
4 int mac_test(void)
5 {
6 DO(hmac_test());
7 DO(pmac_test());
8 DO(omac_test());
9 DO(eax_test());
10 DO(ocb_test());
11 return 0;
12 }