|
|
|
|
|
by dkokelley
4981 days ago
|
|
The password is not what is used to authenticate to the ssh remote. The ssh private key is still used, it's just locked on the client side. You unlock the private key with the passphrase, and then use the unlocked (unencrypted) key to authenticate to the remote. By using a password-free key, your private key is sitting in plain text on your local machine, which is a potential security risk. (Apologies is your question is more nuanced than my understanding.) |
|
I generally use ssh keys so that I dont have to type my password in 50 times a day. Can this be done with a key-password, or does this defeat the entire purpose of having a key-password?