0

我正在使用来自 didisoft 的 OpenPGP 来加密和解密文件。我有一个加密文件和与加密密钥对应的私钥。但是当我尝试使用 DecryptFile () 方法时,我得到一个空指针异常。我无法弄清楚问题是什么。任何帮助,将不胜感激。代码:

public void decryptFile(string filename, string destPath)

string password = "xxx";
                string encFile = System.IO.Path.GetTempPath() + filename;
                string keyFile = ConfigurationManager.AppSettings["DecryptKeyFile"].ToString();
                PGPLib pgpDecrypter = new PGPLib();
                File.Create(destPath + filename);
                string a = pgpDecrypter.DecryptFile(encFile, keyFile, password, destPath+filename);  // I get the error on this line
4

1 回答 1

1

此支持请求已在滴滴软件官方支持论坛上处理

DidiSoft 产品的主要支持渠道是通过电子邮件发送至 support@didisoft.com,并保证在格林威治标准时间晚上 8:00 / 中部标准时间下午 3:00 之前发出的支持请求在当天回复

其他支持方法可以在DidiSoft 支持信息页面上找到。

于 2013-01-14T11:24:12.080 回答