blob: 691db1690da2fd1bdcf2ad3ca6d8e11e411511b9 [file] [log] [blame]
Damien Milleraf784932008-03-13 00:17:00 +11001#!/bin/sh
Darren Tuckerb99c6e12009-10-07 10:58:40 +11002# $OpenBSD: ssh2putty.sh,v 1.2 2009/10/06 23:51:49 dtucker Exp $
Damien Milleraf784932008-03-13 00:17:00 +11003
4if test "x$1" = "x" -o "x$2" = "x" -o "x$3" = "x" ; then
5 echo "Usage: ssh2putty hostname port ssh-private-key"
6 exit 1
7fi
8
9HOST=$1
10PORT=$2
11KEYFILE=$3
12
13# XXX - support DSA keys too
Tim Ricedce65cf2008-03-13 18:21:06 -070014if grep "BEGIN RSA PRIVATE KEY" $KEYFILE >/dev/null 2>&1 ; then
15 :
16else
Damien Milleraf784932008-03-13 00:17:00 +110017 echo "Unsupported private key format"
18 exit 1
19fi
20
21public_exponent=`
22 openssl rsa -noout -text -in $KEYFILE | grep ^publicExponent |
23 sed 's/.*(//;s/).*//'
24`
25test $? -ne 0 && exit 1
26
27modulus=`
28 openssl rsa -noout -modulus -in $KEYFILE | grep ^Modulus= |
29 sed 's/^Modulus=/0x/' | tr A-Z a-z
30`
31test $? -ne 0 && exit 1
32
33echo "rsa2@$PORT:$HOST $public_exponent,$modulus"
34