I have a .ppk key generated by putty. How can i convert that to a public/private ket to use it with ssh on mac?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Use PuTTYgen's Export to OpenSSH command, which will output the keypair in PEM format usable by OpenSSH.

Both private and public keys are in the same file. If you want to extract the public key, use ssh-keygen -yf mysshkey > mysshkey.pub, but that is not required.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.