mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-08-31 06:38:31 +02:00
- Updated code to dynamic load Lsa functions until RS5 SDK includes them - Add conpty support in openssh - Fixed Wierd characters (?25l) are seen, when logged in from ssh client - Backspace doesn't work in powershell window - Changes to support ssh-shellhost as an alternative shell - Added support to have ssh-shellhost work as a standby shell (ssh-shellhost -c "cmdline") simply executes cmdline via CreateProcess - Added E2E test cases and fixed unittests broken from prior changes - Added PTY launch interface that supports both conpty and ssh-shellhost pty. - Implemented PTY control channel in ssh-shellhost that supports Window resize events. - Fixed regression with starting a PTY session with an explicit command - modified ssh-shellhost pty argument to ---pty to remove ambiguity in cases when both -p and -c are present in commandline. Ex. ssh-shellhost.exe -c "myprogram -p -c argument"
39 lines
1.3 KiB
Bash
39 lines
1.3 KiB
Bash
# $OpenBSD: keygen-convert.sh,v 1.1 2009/11/09 04:20:04 dtucker Exp $
|
|
# Placed in the Public Domain.
|
|
|
|
tid="convert keys"
|
|
|
|
for t in rsa dsa; do
|
|
# generate user key for agent
|
|
trace "generating $t key"
|
|
rm -f $OBJ/$t-key
|
|
${SSHKEYGEN} -q -N "" -t $t -f $OBJ/$t-key
|
|
|
|
trace "export $t private to rfc4716 public"
|
|
${SSHKEYGEN} -q -e -f $OBJ/$t-key >$OBJ/$t-key-rfc || \
|
|
fail "export $t private to rfc4716 public"
|
|
|
|
trace "export $t public to rfc4716 public"
|
|
${SSHKEYGEN} -q -e -f $OBJ/$t-key.pub >$OBJ/$t-key-rfc.pub || \
|
|
fail "$t public to rfc4716 public"
|
|
|
|
cmp $OBJ/$t-key-rfc $OBJ/$t-key-rfc.pub || \
|
|
fail "$t rfc4716 exports differ between public and private"
|
|
|
|
trace "import $t rfc4716 public"
|
|
${SSHKEYGEN} -q -i -f $OBJ/$t-key-rfc >$OBJ/$t-rfc-imported || \
|
|
fail "$t import rfc4716 public"
|
|
|
|
cut -f1,2 -d " " $OBJ/$t-key.pub >$OBJ/$t-key-nocomment.pub
|
|
if [ "$os" == "windows" ]; then
|
|
# Ignore CR (carriage return) while comparing files
|
|
diff --strip-trailing-cr $OBJ/$t-key-nocomment.pub $OBJ/$t-rfc-imported || \
|
|
fail "$t imported differs from original"
|
|
else
|
|
cmp $OBJ/$t-key-nocomment.pub $OBJ/$t-rfc-imported || \
|
|
fail "$t imported differs from original"
|
|
fi
|
|
rm -f $OBJ/$t-key $OBJ/$t-key.pub $OBJ/$t-key-rfc $OBJ/$t-key-rfc.pub \
|
|
$OBJ/$t-rfc-imported $OBJ/$t-key-nocomment.pub
|
|
done
|