| 58 | |
| 59 | |
| 60 | int main(int argc, char** argv) |
| 61 | { |
| 62 | bench_aes(false); |
| 63 | bench_aes(true); |
| 64 | bench_blowfish(); |
| 65 | bench_twofish(); |
| 66 | bench_arc4(); |
| 67 | bench_des(); |
| 68 | |
| 69 | printf("\n"); |
| 70 | |
| 71 | bench_md5(); |
| 72 | bench_sha(); |
| 73 | bench_ripemd(); |
| 74 | |
| 75 | printf("\n"); |
| 76 | |
| 77 | bench_rsa(); |
| 78 | bench_dh(); |
| 79 | bench_dsa(); |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | const int megs = 5; // how much to test |
| 85 |
nothing calls this directly
no test coverage detected