diff options
Diffstat (limited to 'openssl/test/testssl')
-rw-r--r-- | openssl/test/testssl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/openssl/test/testssl b/openssl/test/testssl index b55364ae8..5ae4dc872 100644 --- a/openssl/test/testssl +++ b/openssl/test/testssl @@ -148,4 +148,14 @@ $ssltest -tls1 -cipher PSK -psk abc123 $extra || exit 1 echo test tls1 with PSK via BIO pair $ssltest -bio_pair -tls1 -cipher PSK -psk abc123 $extra || exit 1 +if ../util/shlib_wrap.sh ../apps/openssl no-srp; then + echo skipping SRP tests +else + echo test tls1 with SRP + $ssltest -tls1 -cipher SRP -srpuser test -srppass abc123 + + echo test tls1 with SRP via BIO pair + $ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123 +fi + exit 0 |