c# – 从命令行解密GPG字符串

c# – 从命令行解密GPG字符串,第1张

概述我正在尝试编写一个控制台应用程序,它将根据请求解密gpg签名.一切都很顺利,除了它提示我的GPG密码的部分.如何在没有密码对话框的情况下从命令行调用gpg –decrypt? 到目前为止,这是我的代码: var startInfo = new ProcessStartInfo("gpg.exe");startInfo.Arguments = "--decrypt"; //this is wher 我正在尝试编写一个控制台应用程序,它将根据请求解密gpg签名.一切都很顺利,除了它提示我的GPG密码的部分.如何在没有密码对话框的情况下从命令行调用gpg –decrypt?

到目前为止,这是我的代码:

var startInfo = new processstartinfo("gpg.exe");startInfo.Arguments = "--decrypt"; //this is where I want to insert "--passphrase MyFakePassword"startInfo.CreateNowindow = true;startInfo.UseShellExecute = false;startInfo.RedirectStandardinput = true;startInfo.RedirectStandardOutput = true;startInfo.RedirectStandardError = true;startInfo.WorkingDirectory = @"C:\Program files (x86)\GNU\GnuPG";var proc = Process.Start(startInfo);var sCommandline = stringData + "\n"+(char)26+"\n"; //stringData is the encrypted stringproc.Standardinput.Writeline(sCommandline); proc.Standardinput.Flush();proc.Standardinput.Close();var result = proc.StandardOutput.ReadToEnd();

我尝试在输入的第一行使用–passphrase MyFakePassword,– passphrase-fd MyFakePassword,甚至–passphrase-fd 0和我的密码.如果可能的话,我想避免将我的密码放在运行此代码的机器上的txt文件中.

在此先感谢您的帮助.

解决方法 同时使用–batch –passphrase-fd选项,.eg gpg2 –batch –passphrase-fd 0 –armor –decrypt /path/to/encrypted_file.pgp

在你的代码中,在proc.Standardinput.Writeline(sCommandline)之后;添加这个:

proc.Standardinput.Writeline("your passphrase here");proc.Standardinput.Flush();
总结

以上是内存溢出为你收集整理的c# – 从命令行解密GPG字符串全部内容,希望文章能够帮你解决c# – 从命令行解密GPG字符串所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1251539.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存