mirror of
https://github.com/clearml/dropbear
synced 2025-06-26 18:17:32 +00:00
--HG-- branch : libtomcrypt-orig extra : convert_revision : 7122128aa22564d1a53eebfac79c0393c4d0c011
13 lines
186 B
C
13 lines
186 B
C
/* 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;
|
|
}
|