summaryrefslogtreecommitdiff
path: root/regress/ssh2putty.sh
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-03-13 00:17:00 +1100
committerDamien Miller <djm@mindrot.org>2008-03-13 00:17:00 +1100
commitaf78493bba42cd4351eded064fb63b81fa2867a9 (patch)
tree0eca81431c4b72d3cc1a6f3119a95ad7ffa82fa8 /regress/ssh2putty.sh
parent4cd5fbab4d73b135e7775d90bb747eca4fca12cd (diff)
- djm@cvs.openbsd.org 2007/12/21 04:13:53
[regress/Makefile regress/test-exec.sh regress/putty-ciphers.sh] [regress/putty-kex.sh regress/putty-transfer.sh regress/ssh2putty.sh] basic (crypto, kex and transfer) interop regression tests against putty To run these, install putty and run "make interop-tests" from the build directory - the tests aren't run by default yet.
Diffstat (limited to 'regress/ssh2putty.sh')
-rwxr-xr-xregress/ssh2putty.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/regress/ssh2putty.sh b/regress/ssh2putty.sh
new file mode 100755
index 000000000..82dd44787
--- /dev/null
+++ b/regress/ssh2putty.sh
@@ -0,0 +1,31 @@
1#!/bin/sh
2
3if test "x$1" = "x" -o "x$2" = "x" -o "x$3" = "x" ; then
4 echo "Usage: ssh2putty hostname port ssh-private-key"
5 exit 1
6fi
7
8HOST=$1
9PORT=$2
10KEYFILE=$3
11
12# XXX - support DSA keys too
13if ! grep -q "BEGIN RSA PRIVATE KEY" $KEYFILE ; then
14 echo "Unsupported private key format"
15 exit 1
16fi
17
18public_exponent=`
19 openssl rsa -noout -text -in $KEYFILE | grep ^publicExponent |
20 sed 's/.*(//;s/).*//'
21`
22test $? -ne 0 && exit 1
23
24modulus=`
25 openssl rsa -noout -modulus -in $KEYFILE | grep ^Modulus= |
26 sed 's/^Modulus=/0x/' | tr A-Z a-z
27`
28test $? -ne 0 && exit 1
29
30echo "rsa2@$PORT:$HOST $public_exponent,$modulus"
31