]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
removed UMAC ciphersuites from benchmark
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 14 Dec 2013 17:22:28 +0000 (18:22 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 14 Dec 2013 17:22:28 +0000 (18:22 +0100)
src/benchmark-tls.c

index 5fcde166aec6f8719e95fdee43ed59569fbeed29..161e02beb31e6f75a6f6ed512d6e794c71677cd0 100644 (file)
@@ -49,7 +49,6 @@ const char *side = "";
 #define PRIO_RSA "NONE:+VERS-TLS1.0:+AES-128-CBC:+SHA1:+SIGN-ALL:+COMP-NULL:+RSA"
 
 #define PRIO_ARCFOUR_128_SHA1 "NONE:+VERS-TLS1.0:+ARCFOUR-128:+SHA1:+SIGN-ALL:+COMP-NULL:+RSA"
-#define PRIO_SALSA20_256_UMAC_96 "NONE:+VERS-TLS1.0:+SALSA20-256:+UMAC-96:+SIGN-ALL:+COMP-NULL:+RSA"
 
 #define PRIO_AES_CBC_SHA1 "NONE:+VERS-TLS1.0:+AES-128-CBC:+SHA1:+SIGN-ALL:+COMP-NULL:+RSA"
 #define PRIO_ARCFOUR_128_MD5 "NONE:+VERS-TLS1.0:+ARCFOUR-128:+MD5:+SIGN-ALL:+COMP-NULL:+RSA"
@@ -460,7 +459,6 @@ void benchmark_tls(int debug_level, int ciphers)
                    ("Testing throughput in cipher/MAC combinations (payload: %d bytes)\n",
                     size);
 
-               test_ciphersuite(PRIO_SALSA20_256_UMAC_96, size);
                test_ciphersuite(PRIO_SALSA20_256_SHA1, size);
                test_ciphersuite(PRIO_ARCFOUR_128_SHA1, size);
                test_ciphersuite(PRIO_ARCFOUR_128_MD5, size);
@@ -472,7 +470,6 @@ void benchmark_tls(int debug_level, int ciphers)
                printf
                    ("\nTesting throughput in cipher/MAC combinations (payload: %d bytes)\n",
                     size);
-               test_ciphersuite(PRIO_SALSA20_256_UMAC_96, size);
                test_ciphersuite(PRIO_SALSA20_256_SHA1, size);
                test_ciphersuite(PRIO_ARCFOUR_128_SHA1, size);
                test_ciphersuite(PRIO_ARCFOUR_128_MD5, size);