打开 PDFSharp 文档,保存会删除密码

本文关键字:删除 密码 保存 PDFSharp 文档 打开 | 更新日期: 2023-09-27 18:33:03

出于 2 个不同的原因,我在 2 个不同的应用程序中使用 PDFSharp。第一个是密码保护文档,第二个是给文档加水印。这些进程都在自己的应用程序/工作流中单独工作。问题是应用程序 1 只知道密码,应用程序 2 只知道水印,应用程序 1 使用默认所有者密码和动态用户密码,应用程序 2 使用所有者密码打开文档以应用水印。 问题是密码没有持久化,似乎 PDFSharp 在保存文档时忽略了以前的 PDF 密码?!

有没有办法在应用水印时保留安全设置,而无需再次明确定义密码?

我在 PDFSharp 论坛上发布了这个,但他们忽略了它,这不是一个好兆头?!http://forum.pdfsharp.net/viewtopic.php?f=2&t=2003&p=5737#p5737

亲切问候

打开 PDFSharp 文档,保存会删除密码

我认为

这是PDF锐利的限制,因为我在那里论坛上没有得到他们的回应或帮助。 我打开了那里的代码并进行以下更改以纠正错误。 首先,我在 SecurityHandler.cs 类上添加了一个新属性

public string OwnerPassword
{
  set { SecurityHandler.OwnerPassword = value; }
}
/// <summary>
/// TODO: JOSH
/// </summary>
public bool MaintainOwnerAndUserPassword
{
    get { return SecurityHandler.MaintainOwnerAndUserPassword; }
    set { SecurityHandler.MaintainOwnerAndUserPassword = value; }
}

然后,我将 PdfDocument.cs 类上的 doSave 方法更改为如下所示:

    void DoSave(PdfWriter writer)
{
  if (this.pages == null || this.pages.Count == 0)
    throw new InvalidOperationException("Cannot save a PDF document with no pages.");
  try
  {
    bool encrypt = this.securitySettings.DocumentSecurityLevel != PdfDocumentSecurityLevel.None;
    if (encrypt)
    {
      PdfStandardSecurityHandler securityHandler = this.securitySettings.SecurityHandler;
      if (securityHandler.Reference == null)
        this.irefTable.Add(securityHandler);
      else
        Debug.Assert(this.irefTable.Contains(securityHandler.ObjectID));
      this.trailer.Elements[PdfTrailer.Keys.Encrypt] = this.securitySettings.SecurityHandler.Reference;
    }
    else
      this.trailer.Elements.Remove(PdfTrailer.Keys.Encrypt);
    PrepareForSave();
    if (encrypt && !securitySettings.SecurityHandler.MaintainOwnerAndUserPassword)
      this.securitySettings.SecurityHandler.PrepareEncryption();
...

最后,我将 PDFSecuritySettings 上的 CanSave 方法.cs更改为:

    internal bool CanSave(ref string message)
{
  if (this.documentSecurityLevel != PdfDocumentSecurityLevel.None)
  {
    if ((SecurityHandler.userPassword == null || SecurityHandler.userPassword.Length == 0) &&
        (SecurityHandler.ownerPassword == null || SecurityHandler.ownerPassword.Length == 0) &&
        !SecurityHandler.MaintainOwnerAndUserPassword)
    {
      message = PSSR.UserOrOwnerPasswordRequired;
      return false;
    }
  }
  return true;
}

这应该允许您设置维护所有者和用户密码设置,并假设您已经有一个散列的用户名和密码,它应该可以正常工作,

一遍

又一遍。