summaryrefslogtreecommitdiff
path: root/src/tls_test.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-02-27 20:26:23 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-02-27 20:26:23 +0000
commite3408103b72a9ef66ecfea4c6b8dcbfc935319fa (patch)
treefb85fd21dabb35a10174c5bcb38df81a85b6a65e /src/tls_test.c
parentc501e315cf185bfa754e6d5b66b43c42fc3c2660 (diff)
downloadgnutls-e3408103b72a9ef66ecfea4c6b8dcbfc935319fa.tar.gz
added check for client hello extensions.
Diffstat (limited to 'src/tls_test.c')
-rw-r--r--src/tls_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tls_test.c b/src/tls_test.c
index 704909e3bb..58fd834c87 100644
--- a/src/tls_test.c
+++ b/src/tls_test.c
@@ -83,15 +83,16 @@ static const TLS_TEST tls_tests[] = {
/* this test will disable TLS 1.0 if the server is
* buggy */
{ "whether we need disable TLS 1.0", test_tls1_2, "no", "yes", "dunno" },
+ { "whether the server can accept Hello Extensions", test_hello_extension, "yes", "no", "dunno"},
{ "for anonymous authentication support", test_anonymous, "yes", "no", "dunno"},
{ "for ephemeral Diffie Hellman support", test_dhe, "yes", "no", "dunno" },
- { "for SRP authentication support", test_srp, "yes", "no", "dunno" },
- { "for TLS extension - max record size", test_max_record_size, "yes", "no", "dunno" },
{ "for AES cipher support", test_aes, "yes", "no", "dunno"},
{ "for 3DES cipher support", test_3des, "yes", "no", "dunno"},
{ "for ARCFOUR cipher support", test_arcfour, "yes", "no", "dunno"},
{ "for MD5 MAC support", test_md5, "yes", "no", "dunno"},
{ "for SHA1 MAC support", test_sha, "yes", "no", "dunno"},
+ { "for max record size TLS extension", test_max_record_size, "yes", "no", "dunno" },
+ { "for SRP authentication support (gnutls extension)", test_srp, "yes", "no", "dunno" },
{ NULL }
};