彩票走势图

PPT处理控件Aspose.Slides入门教程(4):在 C# 中将数字签名添加到 PowerPoint

翻译|使用教程|编辑:胡涛|2022-10-09 10:49:04.243|阅读 163 次

概述:在本文中,您将学习如何使用 C# 向 PowerPoint 添加数字签名。欢迎查阅~

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Aspose.Slides for .NET是一款.NET PowerPoint管理API,用于读取,编写,操作和转换PowerPoint幻灯片的独立API,可将PowerPoint转换为PDF,PDF/A,XPS,TIFF,HTML,ODP和其他PowerPoint格式。

Aspose.Slides for Java最新下载

数字签名是用于验证数字文档的真实性和完整性的电子签名。当您以数字方式签署文档时,签名将作为确认该文档来自您并且自您签署以来没有更改过。

在本文中,您将学习如何使用 C# 向 PowerPoint 添加数字签名。

一、使用 PowerPoint 库对 PowerPoint 进行数字签名

Microsoft PowerPoint 应用程序提供允许用户将数字签名添加到其 PPT 和 PPTX 演示文稿的功能。

但是,要在 C# 中为 PowerPoint PPT 或 PPTX 添加数字签名,您必须使用Aspose.Slides for .NET。后者是一个 PowerPoint 库,允许您使用简单的代码行创建、修改和操作演示文稿。

二、获取签名证书

此外,要将数字签名附加到 PowerPoint 文档,您需要签名或数字证书。此类证书可识别并证明您的身份。您可以创建自己的证书,也可以从证书颁发机构(颁发证书)处获得证书。

当您向某人发送经过数字签名的 PowerPoint 演示文稿时,您实际上是在向该人发送您的证书和公钥。

三、在 C# 中将数字签名添加到 PowerPoint

假设您有一个可以使用的数字证书,您可以通过以下步骤为您的 PowerPoint 演示文稿添加数字签名:

  1. 通过Presentation类加载要添加数字签名的 PowerPoint 。
  2. 使用DigitalSignature类,创建一个数字签名对象。将数字签名 PFX 文件和密码传递给它。
  3. 将数字签名添加到 PowerPoint 演示文稿。
  4. 保存修改后的演示文稿。

此 C# 代码向您展示如何将数字签名添加到 PowerPoint:

using (Presentation pres = new Presentation())
{
// Creates a DigitalSignature object with the PFX file and PFX password
DigitalSignature signature = new DigitalSignature("testsignature1.pfx", @"testpass1");

// Comments new digital signature
signature.Comments = "Aspose.Slides digital signing test.";

// Adds digital signature to the presentation
pres.DigitalSignatures.Add(signature);

// Saves the modified presentation
pres.Save("SomeSignedPresentation.pptx", SaveFormat.Pptx);
}
四、在 C# 中验证数字签名的 PPT

除了向 PowerPoint PPT 添加数字签名外,Aspose.Slides for .NET还允许您验证数字签名的演示文稿。验证操作实质上是检查演示文稿自签名后是否已被修改。

通过这些步骤来验证数字签名的 PowerPoint 演示文稿:

  1. 通过Presentation类加载您要验证的数字签名 PPT 。
  2. 检查 PowerPoint 是否已签名。
  3. 检查签名(用于签署演示文稿)是否有效。

此 C# 代码向您展示如何验证数字签名的 PowerPoint:

using (Presentation pres = new Presentation())
{
// Creates a DigitalSignature object with the PFX file and PFX password
DigitalSignature signature = new DigitalSignature("testsignature1.pfx", @"testpass1");

// Comments new digital signature
signature.Comments = "Aspose.Slides digital signing test.";

// Adds digital signature to the presentation
pres.DigitalSignatures.Add(signature);

// Saves the modified presentation
pres.Save("SomeSignedPresentation.pptx", SaveFormat.Pptx);
}

以上便是如何在 C# 中将数字签名添加到 PowerPoint,如您还有关于产品相关方面的疑问,可以继续浏览本系列其他内容,也欢迎您加入我们的交流群发表您遇到的问题。


欢迎下载|体验更多Aspose文档管理产品 
获取更多信息请咨询 或 加入Aspose技术交流群(761297826

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP