pgpファイルの復号化について助けが必要ですか?C#でそれを行う方法を知っている人はいますか? 私はそれを実装しましたが
、コマンドラインをprocess.start ("cmd.exe", command)
開いて実行しない以外は何もしていません。C:\Windows\System32\IISExpress>
どんな助けでも大歓迎です。
コードスニペット:
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "pgp --decrypt " + inputfile+ " -r \"inputphrase\" --passphrase \"passphrase\" --output " + outputfile+ ".txt";
process.StartInfo = startInfo;
process.Start();
これを達成する方法があれば提案してください。