view demos/test/mac_test.c @ 154:b4c6e7f276e9 libtomcrypt

Makefile.in: don't compile things we don't need
author Matt Johnston <matt@ucc.asn.au>
date Mon, 20 Dec 2004 14:46:40 +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;
}