加密 – 使用外部密钥解密加密的gpg文件

前端之家收集整理的这篇文章主要介绍了加密 – 使用外部密钥解密加密的gpg文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用gpg加密文件,现在我想解密文件.

有没有办法解密文件而无需导入秘密文件

我们在名为key.sec的文件中有密钥;我们可以将秘密文件传递给gpg作为参数(当我们从bash命令行运行decrypt命令时)在解密加密文件时使用吗?或者我们必须导入密钥然后解密加密文件

解决方法

您必须将密钥添加到密钥环.从gpg(1)文档:
--no-default-keyring
          Do not add the default keyrings to the list of
          keyrings. Note that GnuPG will not operate without any
          keyrings,so if you use this option and do not provide
          alternate keyrings via --keyring or --secret-keyring,then GnuPG will still use the default public or secret
          keyrings.

你可以–import –no-default-keyring –secret-keyring临时导入密钥,在解密内容时使用–secret-keyring临时,然后当你’删除〜/ .gnupg / temporary.gpg文件时重做.但那只是一种解决方法.

原文链接:https://www.f2er.com/linux/394298.html

猜你在找的Linux相关文章