彩票走势图

2种方法教你在C#中使用Aspose保护PPT文档

翻译|使用教程|编辑:李显亮|2020-11-27 09:55:23.000|阅读 254 次

概述:本文明确针对MS PowerPoint演示文稿的安全性,并提供保护PPTX文档安全的不同方法。在本文中,将学习如何使用C#使用密码或数字签名保护PowerPoint PPTX。

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

数字信息的保护一直是网络世界中的重要方面。为了保护数字内容,已经设计了各种方式和技术。因此,本文明确针对MS PowerPoint演示文稿的安全性,并提供保护PPTX文档安全的不同方法。在本文中,将学习如何使用C#使用密码或数字签名保护PowerPoint PPTX。

  • 使用密码保护PowerPoint PPTX
  • 使用数字签名保护PowerPoint文档
  • 验证经过数字签名的PowerPoint演示文稿

>>你可以点击这里下载Aspose.Slides v20.10测试体验。(安装包仅提供部分功能,并设置限制,如需试用完整功能请

慧都17一齐周年庆!整合所有格式的Aspose.Total永久授权正在火热促销中,乐享85折起!立马1分钟了解全部咨询!

使用C#中的密码保护PowerPoint PPTX

以下是使用密码保护PowerPoint PPTX演示文稿的步骤。

  • 使用Presentation类加载PPTX演示文稿。
  • 使用Presentation.ProtectionManager.Encrypt(String)方法加密演示文稿。
  • 使用Presentation.Save(String,SaveFormat)方法保存演示文稿。

下面的代码示例演示如何使用C#使用密码保护PPTX。

// Instantiate a Presentation object that represents a presentation file
using (Presentation pres = new Presentation("presentation.pptx"))
{
    // Protect with password
    pres.ProtectionManager.Encrypt("password");

    // Save presentation
    pres.Save("protected-presentation.pptx", Export.SaveFormat.Pptx);
}

使用C#中的数字签名保护PowerPoint文档

数字签名是一种在证书的帮助下保护数字信息的流行方法。MS PowerPoint演示文稿还支持数字签名以保护内容。以下是使用C#对PPTX文件进行数字签名的步骤。

  • 使用Presentation类加载PPTX演示文稿。
  • 创建一个DigitalSignature类的对象,并使用证书文件的路径和密码对其进行初始化。
  • 使用DigitalSignature.Comments属性添加注释。
  • 使用Presentation.DigitalSignatures.Add(DigitalSignature)方法签名演示。
  • 使用Presentation.Save(String,SaveFormat)方法保存演示文稿。

下面的代码示例演示如何使用C#在PowerPoint演示文稿中添加数字签名。

// Instantiate a Presentation object that represents a presentation file
using (Presentation pres = new Presentation("presentation.pptx"))
{
    // Create DigitalSignature object with PFX file and PFX password 
    DigitalSignature signature = new DigitalSignature("testsignature1.pfx", @"testpass1");

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

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

    // Save presentation
    pres.Save("signed-presentation.pptx", Export.SaveFormat.Pptx);
}

使用C#验证数字签名的演示文稿文档

.NET的Aspose.Slides也允许您验证演示文稿是否经过数字签名。此外,您可以检查文档是否被篡改或修改。以下是执行验证的步骤。

  • 使用Presentation类加载PowerPoint演示文稿。
  • 使用Presentation.DigitalSignatures.Count属性检查演示文稿是否包含数字签名。
  • 通过Presentation.DigitalSignatures集合进行迭代以访问每个数字签名。
  • 使用DigitalSignature.IsValid属性检查每个数字签名的有效性。

下面的代码示例演示如何使用C#在PowerPoint演示文稿中验证数字签名。

// Instantiate a Presentation object that represents a presentation file
using (Presentation pres = new Presentation("presentation.pptx"))
{
    // Check if presentation has digital signatures
    if (pres.DigitalSignatures.Count > 0)
    {
        bool allSignaturesAreValid = true;

        Console.WriteLine("Signatures used to sign the presentation: ");

        // Check if all digital signatures are valid
        foreach (DigitalSignature signature in pres.DigitalSignatures)
        {
            Console.WriteLine(signature.Certificate.SubjectName.Name + ", "
                    + signature.SignTime.ToString("yyyy-MM-dd HH:mm") + " -- " + (signature.IsValid ? "VALID" : "INVALID"));
            allSignaturesAreValid &= signature.IsValid;
        }

        if (allSignaturesAreValid)
            Console.WriteLine("Presentation is genuine, all signatures are valid.");
        else
            Console.WriteLine("Presentation has been modified since signing.");
    }
}

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

标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP