彩票走势图

logo Aspose.Cells开发者指南
文档彩票走势图>>Aspose.Cells开发者指南>>Excel管理控件Aspose.Cells开发者指南(二十三):将数字签名添加到已经签名的Excel文件中

Excel管理控件Aspose.Cells开发者指南(二十三):将数字签名添加到已经签名的Excel文件中


Aspose.Cells for .NET是Excel电子表格编程API,可加快电子表格管理和处理任务,支持构建具有生成,修改,转换,呈现和打印电子表格功能的跨平台应用程序。

在接下来的系列教程中,将为开发者带来Aspose.Cells for .NET的一系列使用教程,例如关于加载保存转换、字体、渲染、绘图、智能标记等等。本文将讲解如何将数字签名添加到已经签名的Excel文件中。

下载最新版Aspose.Cells for .NET


第五章:关于工作簿的使用

▲第二节:将数字签名添加到已经签名的Excel文件中

Aspose.Cells提供了Workbook.AddDigitalSignature(DigitalSignatureCollection digitalSignatureCollection) 方法,可用于将数字签名添加到已签名的Excel文件中。

注意:在将数字签名添加到已经签名的Excel文档时,请注意,如果原始文档是Aspose.Cells生成的文档,则可以正常工作。但是,如果原始文档是由其他引擎(例如Microsoft Excel等)生成的,则Aspose.Cells无法在加载并重新保存文件后使文件保持不变,这将使原始签名无效。

下面的示例代码演示了如何利用 Workbook.AddDigitalSignature(DigitalSignatureCollection digitalSignatureCollection) 方法将数字签名添加到已签名的Excel文件中。请检查此代码中使用的示例Excel文件。该文件已经过数字签名。屏幕截图显示了执行后示例代码对示例Excel文件的影响。

Excel管理控件Aspose.Cells开发者指南:将数字签名添加到已经签名的Excel文件中
//Certificate file and its password
string certFileName = sourceDir + "AsposeDemo.pfx";
string password = "aspose";

//Load the workbook which is already digitally signed to add new digital signature
Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook(sourceDir + "sampleDigitallySignedByCells.xlsx");

//Create the digital signature collection
Aspose.Cells.DigitalSignatures.DigitalSignatureCollection dsCollection = new Aspose.Cells.DigitalSignatures.DigitalSignatureCollection();

//Create new certificate
System.Security.Cryptography.X509Certificates.X509Certificate2 certificate = new System.Security.Cryptography.X509Certificates.X509Certificate2(certFileName, password);

//Create new digital signature and add it in digital signature collection
Aspose.Cells.DigitalSignatures.DigitalSignature signature = new Aspose.Cells.DigitalSignatures.DigitalSignature(certificate, "Aspose.Cells added new digital signature in existing digitally signed workbook.", DateTime.Now);
dsCollection.Add(signature);

//Add digital signature collection inside the workbook
workbook.AddDigitalSignature(dsCollection);

//Save the workbook and dispose it.
workbook.Save(outputDir + "outputDigitallySignedByCells.xlsx");
workbook.Dispose();

还想要更多吗?您可以点击阅读【2019 · Aspose最新资源整合】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(642018183),我们很高兴为您提供查询和咨询
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP