tomcrypt/demos/test/mac_test.c

13 lines
186 B
C
Raw Normal View History

2004-05-30 22:36:47 -04:00
/* test pmac/omac/hmac */
#include "test.h"
int mac_test(void)
{
2004-06-19 22:41:49 -04:00
DO(hmac_test());
DO(pmac_test());
DO(omac_test());
DO(eax_test());
DO(ocb_test());
2004-05-30 22:36:47 -04:00
return 0;
}