tomcrypt/tests/misc_test.c

26 lines
392 B
C
Raw Normal View History

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