mirror of
https://github.com/curl/curl.git
synced 2026-05-05 01:39:55 +03:00
Revert the 512 change since newer versions of OpenSSH don't support DSA
keys that small.
This commit is contained in:
parent
5251c45187
commit
c7db74fe73
1 changed files with 2 additions and 2 deletions
|
|
@ -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 -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";
|
||||
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";
|
||||
}
|
||||
|
||||
open(FILE, ">>$conffile") || die "Could not write $conffile";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue