comparison demos/timing.c @ 192:9cc34777b479 libtomcrypt

propagate from branch 'au.asn.ucc.matt.ltc-orig' (head 9ba8f01f44320e9cb9f19881105ae84f84a43ea9) to branch 'au.asn.ucc.matt.dropbear.ltc' (head dbf51c569bc34956ad948e4cc87a0eeb2170b768)
author Matt Johnston <matt@ucc.asn.au>
date Sun, 08 May 2005 06:36:47 +0000
parents 1c15b283127b
children 39d5d58461d6
comparison
equal deleted inserted replaced
164:cd1143579f00 192:9cc34777b479
1 #include <tomcrypt_test.h>
2
3 int main(void)
4 {
5 init_timer();
6 reg_algs();
7 time_keysched();
8 time_cipher();
9 time_cipher2();
10 time_cipher3();
11 time_hash();
12 time_macs();
13 time_encmacs();
14 time_prng();
15 time_mult();
16 time_sqr();
17 time_rsa();
18 time_ecc();
19 time_dh();
20
21 return EXIT_SUCCESS;
22
23 }