From: Dan Fandrich Date: Wed, 18 Jul 2007 00:27:13 +0000 (+0000) Subject: Use 512 bit keys to reduce the time taken to generate them. This shouldn't X-Git-Tag: curl-7_17_0-preldapfix~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89d119646d124c642b5b4d39227e69314e2b7879;p=thirdparty%2Fcurl.git Use 512 bit keys to reduce the time taken to generate them. This shouldn't really reduce security since in the common case of a daily automated build the keys are only used for a single test run lasting a few minutes before being deleted. --- diff --git a/tests/sshserver.pl b/tests/sshserver.pl index d6802ea382..38e7e77807 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -147,8 +147,8 @@ if (! -e "curl_client_key.pub") { } # Make sure all files are gone so ssh-keygen doesn't complain unlink("curl_host_dsa_key", "curl_client_key","curl_host_dsa_key.pub", "curl_client_key.pub"); - system "ssh-keygen -q -t dsa -f curl_host_dsa_key -C 'curl test server' -N ''" and die "Could not generate host key"; - system "ssh-keygen -q -t dsa -f curl_client_key -C 'curl test client' -N ''" and die "Could not generate client key"; + system "ssh-keygen -q -t dsa -b 512 -f curl_host_dsa_key -C 'curl test server' -N ''" and die "Could not generate host key"; + system "ssh-keygen -q -t dsa -b 512 -f curl_client_key -C 'curl test client' -N ''" and die "Could not generate client key"; } open(FILE, ">>$conffile") || die "Could not write $conffile";