我尝试使用GPG命令解密我的文件:
FileInfo info = new FileInfo(@"C:\Users\***\Desktop\files\file.pgp");
string decryptedFileName = info.FullName.Substring(0, info.FullName.LastIndexOf('.')) + "Dec.TXT";
string encryptedFileName = info.FullName;
string password = "pass";
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("cmd.exe");
psi.CreateNoWindow = true;
psi.UseShellExecute = false;
psi.RedirectStandardInput = true;
psi.RedirectStandardOutput = true;
psi.RedirectStandardError = true;
psi.WorkingDirectory = @"C:\Program Files (x86)\GNU\GnuPG";
System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi);
//string sCommandLine = @"echo " + password + "|gpg.exe --passphrase-fd 0 --batch --verbose --yes --output " + decryptedFileName + @" --decrypt """ + encryptedFileName;
string sCommandLine = @"gpg --output " + decryptedFileName + @" --decrypt """ + encryptedFileName;
process.StandardInput.WriteLine(sCommandLine);
process.StandardInput.Flush();
process.StandardInput.Close();
process.WaitForExit();
string result = process.StandardOutput.ReadToEnd();
string error = process.StandardError.ReadToEnd();
process.Close();
不幸的是,我收到以下错误:“用法:gpg [options] [filename] \ r \ n” 知道什么可能是错的吗?
答案 0 :(得分:1)
错误消息表明传递的参数错误。两个字符串中的任何一个都未设置,或者在转义特殊字符时出现问题。
转储sCommandLine
(或在那里添加调试器断点),可能两个文件名中的一个是空的或严重转义。这应该可以帮助您找到导致问题的变量。
您可能还想考虑使用BouncyCastle等本机OpenPGP库,而不是从C#调用GnuPG二进制文件。