diff options
author | Matt Johnston <matt@ucc.asn.au> | 2017-06-24 17:50:50 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2017-06-24 17:50:50 +0800 |
commit | a79b61517bc7123250d0e2dc21dc18deccf0bb64 (patch) | |
tree | f95c80c6801abd286eaf370dd794859235d1be82 /libtomcrypt/testprof/mac_test.c | |
parent | 99361f54ca77e0d1ff821c02d7d8df3a87aafde5 (diff) |
update to libtomcrypt 1.17 (with Dropbear changes)
Diffstat (limited to 'libtomcrypt/testprof/mac_test.c')
-rw-r--r-- | libtomcrypt/testprof/mac_test.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libtomcrypt/testprof/mac_test.c b/libtomcrypt/testprof/mac_test.c index 410e4b5..c09bb1d 100644 --- a/libtomcrypt/testprof/mac_test.c +++ b/libtomcrypt/testprof/mac_test.c @@ -18,24 +18,24 @@ int mac_test(void) #ifdef LTC_F9_MODE DO(f9_test()); #endif -#ifdef EAX_MODE +#ifdef LTC_EAX_MODE DO(eax_test()); #endif -#ifdef OCB_MODE +#ifdef LTC_OCB_MODE DO(ocb_test()); #endif -#ifdef CCM_MODE +#ifdef LTC_CCM_MODE DO(ccm_test()); #endif -#ifdef GCM_MODE +#ifdef LTC_GCM_MODE DO(gcm_test()); #endif -#ifdef PELICAN +#ifdef LTC_PELICAN DO(pelican_test()); #endif return 0; } -/* $Source: /cvs/libtom/libtomcrypt/testprof/mac_test.c,v $ */ -/* $Revision: 1.5 $ */ -/* $Date: 2006/11/08 21:57:04 $ */ +/* $Source$ */ +/* $Revision$ */ +/* $Date$ */ |