我使用GnuPG和C#加密进口公钥文件。 但是,当我试图让加密,加密的GnuPG文件与主用户的公钥。 我敢肯定,我通过正确的收件人。
Answer 1:
您可以尝试使用我的开源和免费的GnuPG包装为C#(和VB.NET)。 所有的代码是通过MIT,非GPL的限制许可。 你可以找到在CodePlex上源代码的发布。 寻找阿尔法版本找到GPG库。
http://biko.codeplex.com/
例:
GnuPG gpg = new GnuPG();
gpg.Recipient = "myfriend@domain.com";
FileStream sourceFile = new FileStream(@"c:\temp\source.txt", FileMode.Open);
FileStream outputFile = new FileStream(@"c:\temp\output.txt", FileMode.Create);
// encrypt the data using IO Streams - any type of input and output IO Stream can be used
gpg.Encrypt(sourceFile, outputFile);
文章来源: GnuPG Wrapper with C#