libtomcrypt/testprof/mac_test.c

36 lines
473 B
C
Raw Normal View History

2005-04-17 11:37:13 +00:00
/* test pmac/omac/hmac */
#include <tomcrypt_test.h>
int mac_test(void)
{
#ifdef HMAC
DO(hmac_test());
#endif
#ifdef PMAC
DO(pmac_test());
#endif
#ifdef OMAC
DO(omac_test());
#endif
#ifdef EAX_MODE
DO(eax_test());
#endif
#ifdef OCB_MODE
DO(ocb_test());
#endif
#ifdef CCM_MODE
DO(ccm_test());
#endif
#ifdef GCM_MODE
DO(gcm_test());
#endif
#ifdef PELICAN
DO(pelican_test());
#endif
return 0;
}
2005-06-09 00:08:13 +00:00
/* $Source$ */
/* $Revision$ */
/* $Date$ */