diff options
author | Bodo Möller <bodo@openssl.org> | 2000-03-10 14:23:20 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-03-10 14:23:20 +0100 |
commit | e458958280c2cfaf7d9be4c87fab4a1dd59e02aa (patch) | |
tree | e52c0aed2fb546b22721f2ce819580eb4f2badf2 /ms | |
parent | Add the possibility (with -ign_eof) to ignore end of file on input but (diff) | |
download | openssl-e458958280c2cfaf7d9be4c87fab4a1dd59e02aa.tar.xz openssl-e458958280c2cfaf7d9be4c87fab4a1dd59e02aa.zip |
Always use fixed DH parameters created with 'dhparam -C',
don't dynamically create them. This allows using ssltest
for approximate performance comparisons:
$ time ./ssltest -num 50 -tls1 -cert ../apps/server2.pem \
[-no_dhe|-dhe1024dsa|-dhe1024]
(server2.pem contains a 1024 bit RSA key, the default has only
512 bits.) Note that these timings contain both the server's and
the client's computations, they are not a good indicator for
server workload in different configurations.
Diffstat (limited to 'ms')
-rwxr-xr-x | ms/test.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/test.bat b/ms/test.bat index 3506a644f5..ef37beaa22 100755 --- a/ms/test.bat +++ b/ms/test.bat @@ -136,7 +136,7 @@ ssltest -bio_pair -ssl2 if errorlevel 1 goto done
echo test sslv2/sslv3 with 1024 bit DHE via BIO pair
-ssltest -bio_pair -dhe1024 -v
+ssltest -bio_pair -dhe1024dsa -v
if errorlevel 1 goto done
echo test sslv2 with server authentication via BIO pair
|