libtomcrypt/tests/misc_test.c

37 lines
713 B
C
Raw Normal View History

2017-06-19 13:49:18 +00: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.
*/
2012-11-23 02:04:50 +00:00
#include <tomcrypt_test.h>
int misc_test(void)
{
#ifdef LTC_HKDF
DO(hkdf_test());
2014-01-03 21:04:50 +00:00
#endif
#ifdef LTC_PKCS_5
DO(pkcs_5_test());
#endif
#ifdef LTC_BASE64
DO(base64_test());
2015-08-22 15:29:46 +00:00
#endif
2017-10-19 15:27:08 +00:00
#ifdef LTC_BASE32
DO(base32_test());
#endif
2015-08-22 15:29:46 +00:00
#ifdef LTC_ADLER32
DO(adler32_test());
2015-08-23 20:02:42 +00:00
#endif
#ifdef LTC_CRC32
DO(crc32_test());
2012-11-23 02:04:50 +00:00
#endif
return 0;
}
2017-06-19 11:43:49 +00:00
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */