misc_test.c 249 B

12345678910111213141516171819
  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. return 0;
  14. }
  15. /* $Source$ */
  16. /* $Revision$ */
  17. /* $Date$ */