The passphrase which is the key for the symmetric cipher. The symmetric cipher key is encrypted with encripted code with a specific kind of passphrase , so SSH can't decrypt the key for usage if you don't specify the passphrase. Indeed, it is normal behaviour for it to ask for the passphrase every time. You can change the passphrase with "ssh-keygen -p". You can even choose not to have a passphrase, which is convienent for jumping between computers without using a password. Of course, it's bad if someone would get your private key, since they would be able to do the same, but as long as you keep your secret key in a safe place and unreadable for other users than yourself, you're safe.
|