Skip to content

Commit

Permalink
Check for errors with SRP
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <[email protected]>
  • Loading branch information
snhenson committed Jun 29, 2015
1 parent b34f691 commit 5fced23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/testssl
Original file line number Diff line number Diff line change
Expand Up @@ -236,16 +236,16 @@ 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
$ssltest -tls1 -cipher SRP -srpuser test -srppass abc123 || exit 1

echo test tls1 with SRP via BIO pair
$ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123
$ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123 || exit 1

echo test tls1 with SRP auth
$ssltest -tls1 -cipher aSRP -srpuser test -srppass abc123
$ssltest -tls1 -cipher aSRP -srpuser test -srppass abc123 || exit 1

echo test tls1 with SRP auth via BIO pair
$ssltest -bio_pair -tls1 -cipher aSRP -srpuser test -srppass abc123
$ssltest -bio_pair -tls1 -cipher aSRP -srpuser test -srppass abc123 || exit 1
fi

#############################################################################
Expand Down

0 comments on commit 5fced23

Please sign in to comment.