6

Just a little bit curious, why PuTTY use its own version of private key format to do SSH?

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
user705414
  • 20,472
  • 39
  • 112
  • 155

1 Answers1

6

The author of PuTTY gives two main reasons for having the custom key format on this page.

In short:

  • PuTTY's format stores the public half of the key in plaintext, which allows PuTTY to send the public key to the server automatically.

  • The key is fully tamperproofed with the help of a Message Authentication Code.

Smi
  • 13,850
  • 9
  • 56
  • 64