diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-05-21 12:34:29 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-05-21 12:34:29 +0200 |
commit | 917a5fa7ced3690df6764bf961cef3d632e18cc2 (patch) | |
tree | cd5c8504e581fde606f1995c7001efe39936d475 /src/benchmark-tls.c | |
parent | a25e35dcff380596f1669059d9f89dab37ad0d3b (diff) | |
download | gnutls-917a5fa7ced3690df6764bf961cef3d632e18cc2.tar.gz |
Print purpose of testing.
Diffstat (limited to 'src/benchmark-tls.c')
-rw-r--r-- | src/benchmark-tls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/benchmark-tls.c b/src/benchmark-tls.c index 517e2cbe72..fc20f2ab65 100644 --- a/src/benchmark-tls.c +++ b/src/benchmark-tls.c @@ -270,9 +270,11 @@ main (int argc, char **argv) } gnutls_global_init (); + printf("Testing key exchanges:\n"); test_ciphersuite_kx (PRIO_DH); test_ciphersuite_kx (PRIO_ECDH); + printf("\nTesting throughput in cipher/MAC combinations:\n"); test_ciphersuite (PRIO_AES_CBC_SHA1, 1024); test_ciphersuite (PRIO_AES_CBC_SHA1, 4096); test_ciphersuite (PRIO_AES_CBC_SHA1, 8*1024); |