支持数字签名

使用数字签名

数字签名支持的 Excel 格式

Aspose.Cells for Reporting Services 导出到Excel 2007和ODS文件格式时支持数字签名。

配置数字签名

Aspose.Cells.ReportingServices.xml文件中包含数字签名的配置信息和文本标签:

  • 当 DigitalSignature 设置为关闭时,Aspose.Cells for Reporting Services 关闭数字签名功能。 例如:
 <DigitalSignature value="off">

<report name="" pfxFilename="" pfxPwd="" purpose=""/>

</DigitalSignature>
  • 当DigitalSignature的值为on时,Aspose.Cells.ReportingServices开启数字签名功能。 例如:
 <DigitalSignature value="on">

DigitalSignature 部分有四个参数。这些都是 :

  • name – 指向需要数字签名的报告。参数为空时报表使用PFX文件进行数字签名。
  • pfxFilename——指向 PFX 文件。文件名必须是完整的文件名。它不能设置为空值。
  • pfxPwd – 设置密码。它不能留空。
  • 目的——解释签名的目的。它可以是空白的。 例如:
 <DigitalSignature value="on">

<report name="TestReport" pfxFilename="c:\MyKey.pfx" pfxPwd="tryto" purpose="test digital signature"/>

<report name="" pfxFilename="c:\MyKey.pfx" pfxPwd="tryto" purpose="test digital signature"/>

</DigitalSignature>