在已存在的私钥上启用密码短语


15

我已经有一个没有密码的ssh私钥。当我开始使用它登录一些关键且安全的系统时,我需要在RSA私钥上使用密码。如何在已存在的私钥上启用密码短语?另外,在启用密码短语之前,我想知道如何备份私钥,以防万一我搞砸了或者忘记了密码短语(仅持续几天,直到我可以将密码短语提交到内存中为止)。

Answers:


21

您可以使用该-p选项ssh-keygen

ssh-keygen -p -f /path-to/key-file

它将提示输入新旧密码。如果您不提供-f key-file选项,它也会提示输入密钥文件(并带有建议)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.