我正在尝试创建一个单元测试,它生成一个类似于 Aspose Words 示例中的空测试文档。我使用 makecert.exe 创建了一个测试证书,并在 VS 命令提示符中使用以下行
makecert.exe -sv MyKey.pvk -n "CN=MY DIGITAL KEY" MyKey.cer
然后我使用以下行将其转换为 .pvk 文件
pvk2pfx.exe -pvk MyKey.pvk -spc MyKey.cer -pfx MyPFX.pfx
完成此操作后,我将 .pfx 文件复制到我的 .net 控制台应用程序中,并将复制参数设置为始终复制,以便在我在调试中测试应用程序时将文件复制到 bin 目录。
然后,我的控制台应用程序包含以下代码行,这些代码行尝试编写数字签名的 pdf。
static void Main()
{
string MyDir = AppDomain.CurrentDomain.BaseDirectory;
// Create a simple document from scratch.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Test Signed PDF.");
// Load the certificate from disk.
// The other constructor overloads can be used to load certificates from different locations.
X509Certificate2 cert = new X509Certificate2(MyDir + "RpaKey.pfx", "");
Console.WriteLine("Loading certificate...");
// Pass the certificate and details to the save options class to sign with.
PdfSaveOptions options = new PdfSaveOptions();
options.DigitalSignatureDetails = new PdfDigitalSignatureDetails(
cert,
"Test Signing",
"Aspose Office",
DateTime.Now);
Console.WriteLine("Creating digital signature details...");
try
{
// Save the document as PDF with the digital signature set.
doc.Save(MyDir + "Document.Signed Out.pdf", options);
Console.WriteLine("File saved successfully.");
}
catch (Exception ex)
{
Console.WriteLine("File write failed.");
Console.WriteLine(ex.Message);
if (ex.InnerException != null)
{
Console.WriteLine("");
Console.WriteLine(ex.InnerException);
}
}
Console.ReadKey();
}
但是,我不断收到“指定的算法无效”错误,没有内部异常。有没有人遇到过这个问题?我错过了一步吗?任何帮助表示赞赏。