tomcrypt/tests/mac_test.c

65 lines
1.2 KiB
C
Raw Normal View History

2017-06-19 09:49:18 -04:00
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The library is free for all purposes without any express
* guarantee it works.
*/
2005-04-17 07:37:13 -04:00
/* test pmac/omac/hmac */
#include <tomcrypt_test.h>
int mac_test(void)
{
2006-11-17 09:21:24 -05:00
#ifdef LTC_HMAC
DO(hmac_test());
2005-04-17 07:37:13 -04:00
#endif
2006-11-17 09:21:24 -05:00
#ifdef LTC_PMAC
DO(pmac_test());
2005-04-17 07:37:13 -04:00
#endif
2006-11-17 09:21:24 -05:00
#ifdef LTC_OMAC
DO(omac_test());
2005-04-17 07:37:13 -04:00
#endif
2006-11-17 09:21:24 -05:00
#ifdef LTC_XCBC
DO(xcbc_test());
#endif
#ifdef LTC_F9_MODE
DO(f9_test());
#endif
2007-07-20 13:48:02 -04:00
#ifdef LTC_EAX_MODE
DO(eax_test());
2005-04-17 07:37:13 -04:00
#endif
2007-07-20 13:48:02 -04:00
#ifdef LTC_OCB_MODE
DO(ocb_test());
2005-04-17 07:37:13 -04:00
#endif
#ifdef LTC_OCB3_MODE
DO(ocb3_test());
#endif
2007-07-20 13:48:02 -04:00
#ifdef LTC_CCM_MODE
2005-04-17 07:37:13 -04:00
DO(ccm_test());
#endif
2007-07-20 13:48:02 -04:00
#ifdef LTC_GCM_MODE
2005-04-17 07:37:13 -04:00
DO(gcm_test());
#endif
2007-07-20 13:48:02 -04:00
#ifdef LTC_PELICAN
2005-04-17 07:37:13 -04:00
DO(pelican_test());
#endif
#ifdef LTC_POLY1305
DO(poly1305_test());
#endif
#ifdef LTC_CHACHA20POLY1305_MODE
DO(chacha20poly1305_test());
2017-04-21 09:50:47 -04:00
#endif
#ifdef LTC_BLAKE2SMAC
DO(blake2smac_test());
#endif
#ifdef LTC_BLAKE2BMAC
DO(blake2bmac_test());
2005-04-17 07:37:13 -04:00
#endif
return 0;
}
2005-06-08 20:08:13 -04:00
2017-06-19 07:43:49 -04:00
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */