timing.c 320 B

1234567891011121314151617181920212223242526
  1. #include <tomcrypt_test.h>
  2. int main(void)
  3. {
  4. init_timer();
  5. reg_algs();
  6. time_keysched();
  7. time_cipher();
  8. time_cipher2();
  9. time_cipher3();
  10. time_hash();
  11. time_macs();
  12. time_encmacs();
  13. time_prng();
  14. time_mult();
  15. time_sqr();
  16. time_rsa();
  17. time_ecc();
  18. time_dh();
  19. return EXIT_SUCCESS;
  20. }
  21. /* $Source$ */
  22. /* $Revision$ */
  23. /* $Date$ */