summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/ssl/ssltest.c
diff options
context:
space:
mode:
authorjsing <>2014-06-21 16:48:05 +0000
committerjsing <>2014-06-21 16:48:05 +0000
commit48daf116bc22f85719fc5d16fb0e632fb74fa73c (patch)
tree953cb2b425fdb5148753d804645fdeecebbfe6c0 /src/regress/lib/libssl/ssl/ssltest.c
parente4804fdc8d0f321888039d38c6b65d46a68fd89d (diff)
downloadopenbsd-48daf116bc22f85719fc5d16fb0e632fb74fa73c.tar.gz
openbsd-48daf116bc22f85719fc5d16fb0e632fb74fa73c.tar.bz2
openbsd-48daf116bc22f85719fc5d16fb0e632fb74fa73c.zip
Add DTLS support to ssltest and wire up some regress tests.
ok miod@
Diffstat (limited to 'src/regress/lib/libssl/ssl/ssltest.c')
-rw-r--r--src/regress/lib/libssl/ssl/ssltest.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/regress/lib/libssl/ssl/ssltest.c b/src/regress/lib/libssl/ssl/ssltest.c
index ad24b1f713..40a3b77e07 100644
--- a/src/regress/lib/libssl/ssl/ssltest.c
+++ b/src/regress/lib/libssl/ssl/ssltest.c
@@ -268,6 +268,7 @@ sv_usage(void)
268#ifndef OPENSSL_NO_PSK 268#ifndef OPENSSL_NO_PSK
269 fprintf(stderr, " -psk arg - PSK in hex (without 0x)\n"); 269 fprintf(stderr, " -psk arg - PSK in hex (without 0x)\n");
270#endif 270#endif
271 fprintf(stderr, " -dtls1 - use DTLSv1\n");
271 fprintf(stderr, " -ssl3 - use SSLv3\n"); 272 fprintf(stderr, " -ssl3 - use SSLv3\n");
272 fprintf(stderr, " -tls1 - use TLSv1\n"); 273 fprintf(stderr, " -tls1 - use TLSv1\n");
273 fprintf(stderr, " -CApath arg - PEM format directory of CA's\n"); 274 fprintf(stderr, " -CApath arg - PEM format directory of CA's\n");
@@ -387,7 +388,7 @@ main(int argc, char *argv[])
387 int badop = 0; 388 int badop = 0;
388 int bio_pair = 0; 389 int bio_pair = 0;
389 int force = 0; 390 int force = 0;
390 int tls1 = 0, ssl2 = 0, ssl3 = 0, ret = 1; 391 int tls1 = 0, ssl2 = 0, ssl3 = 0, dtls1 = 0, ret = 1;
391 int client_auth = 0; 392 int client_auth = 0;
392 int server_auth = 0, i; 393 int server_auth = 0, i;
393 struct app_verify_arg app_verify_arg = 394 struct app_verify_arg app_verify_arg =
@@ -488,13 +489,14 @@ main(int argc, char *argv[])
488#else 489#else
489 no_psk = 1; 490 no_psk = 1;
490#endif 491#endif
491 } 492 } else if (strcmp(*argv, "-dtls1") == 0)
493 dtls1 = 1;
492 else if (strcmp(*argv, "-ssl2") == 0) 494 else if (strcmp(*argv, "-ssl2") == 0)
493 ssl2 = 1; 495 ssl2 = 1;
494 else if (strcmp(*argv, "-tls1") == 0)
495 tls1 = 1;
496 else if (strcmp(*argv, "-ssl3") == 0) 496 else if (strcmp(*argv, "-ssl3") == 0)
497 ssl3 = 1; 497 ssl3 = 1;
498 else if (strcmp(*argv, "-tls1") == 0)
499 tls1 = 1;
498 else if (strncmp(*argv, "-num", 4) == 0) { 500 else if (strncmp(*argv, "-num", 4) == 0) {
499 if (--argc < 1) 501 if (--argc < 1)
500 goto bad; 502 goto bad;
@@ -595,11 +597,12 @@ bad:
595 goto end; 597 goto end;
596 } 598 }
597 599
598 if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force) { 600 if (!dtls1 && !ssl2 && !ssl3 && !tls1 &&
601 number > 1 && !reuse && !force) {
599 fprintf(stderr, 602 fprintf(stderr,
600 "This case cannot work. Use -f to perform " 603 "This case cannot work. Use -f to perform "
601 "the test anyway (and\n-d to see what happens), " 604 "the test anyway (and\n-d to see what happens), "
602 "or add one of -ssl2, -ssl3, -tls1, -reuse\n" 605 "or add one of -dtls1, -ssl2, -ssl3, -tls1, -reuse\n"
603 "to avoid protocol mismatch.\n"); 606 "to avoid protocol mismatch.\n");
604 exit(1); 607 exit(1);
605 } 608 }
@@ -653,7 +656,9 @@ bad:
653 } 656 }
654#endif 657#endif
655 658
656 if (tls1) 659 if (dtls1)
660 meth = DTLSv1_method();
661 else if (tls1)
657 meth = TLSv1_method(); 662 meth = TLSv1_method();
658 else if (ssl3) 663 else if (ssl3)
659 meth = SSLv3_method(); 664 meth = SSLv3_method();