view demos/test/mac_test.c @ 211:f01f0400314d libtomcrypt

disapproval of revision 6a39eb8b36778460fca83b8149df2a8b6d3327fd
author Matt Johnston <matt@ucc.asn.au>
date Wed, 06 Jul 2005 13:23:45 +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;
}