1

我正在尝试创建一个单元测试,它生成一个类似于 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();
}

但是,我不断收到“指定的算法无效”错误,没有内部异常。有没有人遇到过这个问题?我错过了一步吗?任何帮助表示赞赏。

4

2 回答 2

1

我自己从未使用过 Aspose,但您应该首先确保从 PVK 到 PFX 格式的转换按预期进行。

改变这个:

X509Certificate2 cert = new X509Certificate2(MyDir + "RpaKey.pfx", "");
Console.WriteLine("Loading certificate...");

X509Certificate2 cert = new X509Certificate2(MyDir + "RpaKey.pfx", "");
Console.WriteLine("Loading certificate... private key available ? {0}", cert.HasPrivateKey);

请注意,它可能确实成功了,因为没有例外 - 但这至少会确认您的流程的第一部分是有效的:-)

如果这显示为,那么您应该更新您的问题以显示来自您的异常的完整堆栈跟踪,例如

catch (Exception ex)
{
    Console.WriteLine(ex);
}

所以我们将看看错误是来自 Aspose 还是 BCL 本身。

于 2011-10-25T13:52:19.670 回答
1

我同意 Poupou 的观点,即完整的堆栈跟踪将有助于了解异常的确切位置以及原因。此外,如果这个问题仍然存在,那么您也可以通过Aspose.Words 论坛联系我们的支持团队。我们将不得不详细调查这个问题,看看它是否真的是由 Aspose.Words 引起的。如果是这样,我们将为您提供解决方案。

此外,当您创建一个非常简单的文档时,看起来问题可能是由签名引起的。你能试试其他的签名文件吗?

披露:我在 Aspose 担任开发人员布道师。

于 2011-10-25T14:59:18.663 回答