diff options
author | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2019-07-17 12:06:54 +0000 |
---|---|---|
committer | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2019-07-17 12:06:54 +0000 |
commit | c09161ec3dc5b7e09e301126a008ff7b9a8ee841 (patch) | |
tree | 93614b2abbd37f87ca81681e609497e8836c755a /regress/usr.bin/openssl/appstest.sh | |
parent | 33e1d60d8534ba34f74c6e725a7bf8aa6e6aeecb (diff) |
Update appstest.sh
- Add -modulus for dsa sub command
- Remove -nextprotoneg
Diffstat (limited to 'regress/usr.bin/openssl/appstest.sh')
-rwxr-xr-x | regress/usr.bin/openssl/appstest.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/regress/usr.bin/openssl/appstest.sh b/regress/usr.bin/openssl/appstest.sh index 7c916958a0c..a9cb4aef15e 100755 --- a/regress/usr.bin/openssl/appstest.sh +++ b/regress/usr.bin/openssl/appstest.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: appstest.sh,v 1.22 2019/06/27 09:34:06 inoguchi Exp $ +# $OpenBSD: appstest.sh,v 1.23 2019/07/17 12:06:53 inoguchi Exp $ # # Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org> # @@ -277,7 +277,7 @@ function test_key { check_exit_status $? start_message "dsa" - $openssl_bin dsa -in $dsaparam512 -text -out $dsaparam512.out + $openssl_bin dsa -in $dsaparam512 -text -modulus -out $dsaparam512.out check_exit_status $? start_message "gendsa - Superseded by genpkey and pkey." @@ -1131,8 +1131,7 @@ function test_server_client { $s_bin s_server -accept $port -CAfile $ca_cert \ -cert $server_cert -key $server_key -pass pass:$server_pass \ -context "appstest.sh" -id_prefix "APPSTEST.SH" -crl_check \ - -nextprotoneg "http/1.1,spdy/3" -alpn "http/1.1,spdy/3" -www \ - -cipher ALL $extra_opts \ + -alpn "http/1.1,spdy/3" -www -cipher ALL $extra_opts \ -msg -tlsextdebug > $s_server_out 2>&1 & check_exit_status $? s_server_pid=$! @@ -1233,8 +1232,7 @@ function test_server_client { start_message "s_client ... connect to TLS/SSL test server to get session id" sleep $test_pause_sec $c_bin s_client -connect $host:$port -CAfile $ca_cert \ - -nextprotoneg "spdy/3,http/1.1" -alpn "spdy/3,http/1.1" \ - -sess_out $sess_dat \ + -alpn "spdy/3,http/1.1" -sess_out $sess_dat \ -msg -tlsextdebug < /dev/null > $s_client_out 2>&1 check_exit_status $? |