gpgee 等效命令行 - gpg 参数
我想在 Windows 批处理脚本中使用 gpg,但没有遇到什么问题。现在我正在使用 gpgee 和漂亮的 GUI。我想通过命令行界面使用 gpg。
Gpg 脚本应该对文本文件进行签名和加密,所以我尝试使用
gpg -u login -ser key_owner 数据文件
,但是,当我尝试比较此命令中的文件和 gpgee 时,发现有差异,gpgee 文件的大小是原来的两倍。
有谁知道等效的 gpg 选项吗?
I want to using gpg in windows batch scripts and i've got little problem. Now I'm using gpgee with nice GUI. I want to use gpg with command line interface.
Gpg script should sign and encyrpt text files, so i try this
gpg -u login -ser key_owner datafile
but, when i try to compare file from this command and gpgee, there are difference, the gpgee file has size is two times larger.
Does anyone know the equivalent gpg options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了原因。 GPGee 有选项“--encrypt_to_self”,默认情况下启用。因此,如果有人想从命令行执行此操作,应该编写如下内容
I found the reason. The GPGee has option "--encrypt_to_self" and it is enabled by default. So if someone would like to do this from command line should write something like this
gpg 始终加密并压缩文件。因此,任何使用 gpg 加密的文件都会比原始文件更小。 GPGee 是否对文件进行任何后期加密处理?
gpg always encrypts and also compresses the files. So, any file encrypted with gpg will have a smaller size than the original file. Is GPGee doing any post encryption processing on the file?