mac_test.c 186 B

123456789101112
  1. /* test pmac/omac/hmac */
  2. #include "test.h"
  3. int mac_test(void)
  4. {
  5. DO(hmac_test());
  6. DO(pmac_test());
  7. DO(omac_test());
  8. DO(eax_test());
  9. DO(ocb_test());
  10. return 0;
  11. }