如何在Linux, OpenBSD, FreeBSD, Apple OS X or Unix操作系统下为一个私钥修改密码?
你需要使用ssh-keygen 命令去为ssh生成,修改管理和转换密钥权限。你应该查看如下文件,在$HOME/.ssh 、 ~/.ssh 或 /home/you/.ssh/。 你可以使用如下命令查看这些文件:
ls -l $HOME/.ssh/
=> id_dsa : DSA authentication identity of the user
=> id_dsa.pub : DSA public key for authentication
=> id_rsa : RSA authentication identity of the user(私钥)
=> id_rsa.pub : RSA public key for authentication(公钥)
使用ssh-keygen修改密码:
-p 选项请求修改私钥的密码,而不是创建一个新的私钥。程序会提示你输入原始密码。然后输入两遍新密码。
-f{filename} 选项去指定密钥的名称。例如:
$ cd ~/.ssh/
修改DSA密码,输入:
$ ssh-keygen -f id_dsa -p
修改PSA密码,输入:
$ ssh-keygen -f id_rsa -p
原文链接:http://www.cyberciti.biz/faq/howto-ssh-changing-passphrase/