gpt4 book ai didi

java - 将附加页面添加到已签名的 pdf 并再次签名

转载 作者:行者123 更新时间:2023-11-29 04:28:46 24 4
gpt4 key购买 nike

是否可以在已签名的 PDF 中添加额外的页面并在不破坏第一个签名的情况下再次签名。

我读了in the adobe documentation增量更新下,这可能是可能的。

但是,我不确定这是否适用于所有内容或仅适用于注释(评论)、表单填写和数字签名。

我尝试通过在 Java 中使用 Apache PDFBox 来完成此操作,方法是签署文档,然后加载它,将页面附加到它,使用 saveIncremental() 保存它并再次签名。

但是,第一个签名会失效。

这是生成新 PDF 的 generateTest 方法:

public byte[] generateTest(InputStream requestPdfIn) throws IOException {

// Create a document and add a page to it
// PDDocument document = new PDDocument();
PDDocument document = PDDocument.load(requestPdfIn);
PDPage page = new PDPage(PDRectangle.A4);
document.addPage(page);

COSBase item = document.getPages().getCOSObject().getItem(COSName.KIDS);
((COSUpdateInfo) item).setNeedToBeUpdated(true);
COSArray kids = (COSArray) item;
kids.setNeedToBeUpdated(true);
((COSUpdateInfo) kids.get(0)).setNeedToBeUpdated(true);

document.getPage(0).getCOSObject().setNeedToBeUpdated(true);
page.getCOSObject().setNeedToBeUpdated(true);
document.getPages().getCOSObject().setNeedToBeUpdated(true);

COSDictionary dict = page.getCOSObject();
while (dict.containsKey(COSName.PARENT)) {
COSBase parent = dict.getDictionaryObject(COSName.PARENT);
if (parent instanceof COSDictionary) {
dict = (COSDictionary) parent;
dict.setNeedToBeUpdated(true);
}
}

document.getDocumentCatalog().getCOSObject().setNeedToBeUpdated(true);
//document.getDocumentCatalog().getStructureTreeRoot().getCOSObject().setNeedToBeUpdated(true);

// Save the results and ensure that the document is properly closed:
ByteArrayOutputStream confirmationPdfOut = new ByteArrayOutputStream();
document.saveIncremental(confirmationPdfOut);
document.close();

return confirmationPdfOut.toByteArray();

}

我在 this post 中找到所有 COSObject 都需要将标志 needToBeUpdated 设置为 true。

但是,当我尝试向文档添加另一页时,这仍然无济于事,因为当我尝试使用 Acrobat Reader 验证签名时,第一个签名无效。

有可能吗? PDFBox 可以吗?

最佳答案

不,这是不可能的。不允许向已签名的 PDF 添加页面。

详细

I read in the adobe documentation under incremental updates that it may be possible.

确实可以在不触及以前修订的情况下向 PDF 添加更改。因此,如果之前的修订已签署,则签名数学上仍然有效,它仍然签署正确的哈希值

但是 PDF 规范及其主要解释(由 Adob​​e 制定)包含附加限制,参见。 this stack overflow answer .正如您所发现的那样,最多允许对已签名的文档进行以下更改:

  • Adding signature fields
  • Adding or editing annotations
  • Supplying form field values
  • Digitally signing

除了检查数学有效性之外,至少 Adob​​e Acrobat (Reader) 会测试此类更改,即使许多其​​他验证服务不这样做也是如此。

因此,您向已签名的 PDF 添加其他页面并在不破坏第一个签名的情况下再次签名的任务无法实现。

关于java - 将附加页面添加到已签名的 pdf 并再次签名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44796153/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com