gpt4 book ai didi

encryption - 如何导出私有(private)/ secret ASC key 来解密 GPG 文件

转载 作者:行者123 更新时间:2023-12-02 23:01:14 25 4
gpt4 key购买 nike

背景:我的老板尝试通过公共(public)和私有(private)部分向我导出 ASC key ,但每当我获取文件时,私有(private)部分永远不会加载,也不会解密任何文件。

我们尝试使用以下方法导出 ASC key :

  • Windows 应用程序 Kleopatra 2.1(包含在 gpg4win 中)
  • Windows 应用程序 GNU 隐私助手(包含在 gpg4win 中)

            Error: "Decryption failed. Secret Key Not available." 

如何正确导出 secret 或私有(private) asc key 来解密 gpg 文件?

最佳答案

您可以使用 command-line tool from GPG 导出私钥。它在 Windows shell 上运行。使用以下命令:

gpg --export-secret-keys

使用 --export 进行正常导出不会包含任何私钥,因此您必须使用 --export-secret-keys

编辑:

总结我的评论中给出的信息,这是允许您将 ID 为 1234ABCD 的特定 key 导出到文件 Secret.asc 的命令:

gpg --export-secret-keys --armor 1234ABCD > secret.asc

您可以使用以下命令找到所需的 ID。 ID 是第二列的第二部分:

gpg --list-keys

仅导出 1 个特定 key 而不是全部 key :

gpg --export-secret-keys keyIDNumber > exportedKeyFilename.asc

keyIDNumber 是您尝试导出的所需 key 的 key ID 号。

关于encryption - 如何导出私有(private)/ secret ASC key 来解密 GPG 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5587513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com