Convert putty .ppk key to OpenSSH format
Posted: Mon May 28, 2007 11:02 pm
[PROBLEM]
I had several SSH keys in PuTTY's internal format ".ppk" and wanted to use them with OpenSSH.
[SOLUTION]
Since I'm using GNU/Linux (K)ubuntu, I did an "apt-get install putty".
Now you have "puttygen" and can do this:
(For Windows: You can probably use "puttygen" application to export it in the GUI)
Note:
If you run "puttygen --help" you can see other options like "public-openssh", etc...
I had several SSH keys in PuTTY's internal format ".ppk" and wanted to use them with OpenSSH.
[SOLUTION]
Since I'm using GNU/Linux (K)ubuntu, I did an "apt-get install putty".
Now you have "puttygen" and can do this:
Code: Select all
puttygen mykey.ppk -O private-openssh -o mykey.key
Note:
If you run "puttygen --help" you can see other options like "public-openssh", etc...