mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-29 16:54:51 +02:00
20131221
- (dtucker) [regress/keytype.sh] Actually test ecdsa key types.
This commit is contained in:
parent
53f8e784dc
commit
77244afe3b
@ -1,3 +1,6 @@
|
|||||||
|
20131221
|
||||||
|
- (dtucker) [regress/keytype.sh] Actually test ecdsa key types.
|
||||||
|
|
||||||
20131219
|
20131219
|
||||||
- (dtucker) [configure.ac] bz#2178: Don't try to use BSM on Solaris versions
|
- (dtucker) [configure.ac] bz#2178: Don't try to use BSM on Solaris versions
|
||||||
greater than 11 either rather than just 11. Patch from Tomas Kuthan.
|
greater than 11 either rather than just 11. Patch from Tomas Kuthan.
|
||||||
|
@ -11,12 +11,14 @@ fi
|
|||||||
cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
|
cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
|
||||||
cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
|
cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
|
||||||
|
|
||||||
|
# Traditional and builtin key types.
|
||||||
ktypes="dsa-1024 rsa-2048 rsa-3072 ed25519-512"
|
ktypes="dsa-1024 rsa-2048 rsa-3072 ed25519-512"
|
||||||
|
# Types not present in all OpenSSL versions.
|
||||||
for i in `$SSH -Q key`; do
|
for i in `$SSH -Q key`; do
|
||||||
case "$i" in
|
case "$i" in
|
||||||
ecdsa-sha2-nistp256) ktype="$ktype ecdsa-256" ;;
|
ecdsa-sha2-nistp256) ktypes="$ktypes ecdsa-256" ;;
|
||||||
ecdsa-sha2-nistp384) ktype="$ktype ecdsa-384" ;;
|
ecdsa-sha2-nistp384) ktypes="$ktypes ecdsa-384" ;;
|
||||||
ecdsa-sha2-nistp521) ktype="$ktype ecdsa-521" ;;
|
ecdsa-sha2-nistp521) ktypes="$ktypes ecdsa-521" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user