Mercurial > dropbear
comparison libtomcrypt/demos/timing.c @ 285:1b9e69c058d2
propagate from branch 'au.asn.ucc.matt.ltc.dropbear' (head 20dccfc09627970a312d77fb41dc2970b62689c3)
to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 08 Mar 2006 13:23:58 +0000 |
parents | |
children | 0cbe8f6dbf9e |
comparison
equal
deleted
inserted
replaced
281:997e6f7dc01e | 285:1b9e69c058d2 |
---|---|
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 return EXIT_SUCCESS; | |
21 | |
22 } | |
23 | |
24 /* $Source: /cvs/libtom/libtomcrypt/demos/timing.c,v $ */ | |
25 /* $Revision: 1.17 $ */ | |
26 /* $Date: 2005/06/23 02:16:26 $ */ |