misc_test.c 343 B

12345678910111213141516171819202122232425
  1. #include <tomcrypt_test.h>
  2. int misc_test(void)
  3. {
  4. #ifdef LTC_HKDF
  5. DO(hkdf_test());
  6. #endif
  7. #ifdef LTC_PKCS_5
  8. DO(pkcs_5_test());
  9. #endif
  10. #ifdef LTC_BASE64
  11. DO(base64_test());
  12. #endif
  13. #ifdef LTC_ADLER32
  14. DO(adler32_test());
  15. #endif
  16. #ifdef LTC_CRC32
  17. DO(crc32_test());
  18. #endif
  19. return 0;
  20. }
  21. /* $Source$ */
  22. /* $Revision$ */
  23. /* $Date$ */