我想加密使用gpg,但即使我明確給出了路徑,我得到這個錯誤..可以有人幫助我嗎? 我正在使用Starksoft.Cryptography.OpenPGP。 我已經安裝了gpg4win-light-2.1.0.exe來獲取gpg.exe文件..gpg加密失敗:文件打開錯誤
有沒有我失蹤的東西?
錯誤:未找到GPG可執行文件。 @C:\ Program Files \ GNU \ GnuPG \ gpg.exe \ gpg2.exe。
GnuPG gpg = new GnuPG();
gpg.BinaryPath = "@C:\\Program Files\\GNU\\GnuPG\\gpg.exe";
gpg.Recipient = "[email protected]";
FileStream sourceFile = new FileStream(sourcePath, FileMode.Open);
FileStream outputFile = new FileStream(Destinationpath, FileMode.Create);
gpg.Encrypt(sourceFile,outputFile);
sourceFile.Close();
outputFile.Close();
我甚至有一個openBlackboxPGP的許可證..我可以使用gpg加密嗎?
如果我錯過了一些東西,請幫助我! 在此先感謝!
(從評論更改爲答案,請參閱下文。) – 2012-07-31 20:34:41