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