我可以为现有的 GPG 密钥添加到期日期吗?

我可以为现有的 GPG 密钥添加到期日期吗?

我有一个 GPG 密钥。此密钥无限期有效。我最近认为这不是最好的主意。这就是我的问题:我可以为现有的 GPG 密钥添加到期日期吗?或者我唯一的选择是创建一个新密钥?

答案1

是的,您可以编辑它。具体过程取决于您使用的软件。我使用适用于 Windows 的 GPGkeys,您只需右键单击您的私钥,然后选择edit > expiration date。您的软件中可能也有类似的方法。您也可以随时手动撤销密钥。

答案2

如果你从命令行执行此操作,则可以这样做gpg:-

[andys@daedalus ~]$ gpg --edit-key 0xA762A666

<...>

Command> expire
Changing expiration time for the primary key.
Please specify how long the key should be valid.
         0 = key does not expire
      <n>  = key expires in n days
      <n>w = key expires in n weeks
      <n>m = key expires in n months
      <n>y = key expires in n years
Key is valid for? (0) 10y
Key expires at Mon 14 Dec 2020 23:49:53 GMT
Is this correct? (y/N) y

You need a passphrase to unlock the secret key for
user: "Andy Smith <[email protected]>"
4096-bit RSA key, ID A762A666, created 2009-05-08

输入密码,保存密钥,就大功告成了。您可能还想将密钥重新上传到您之前上传过密钥的任何密钥服务器。

相关内容