数字签名
这段 Python 代码演示了如何使用 IronPDF 库对现有 PDF 进行加密签名并创建带有数字签名的 PDF。
如何用 Python 生成数字签名
- 下载生成数字签名的 Python 模块
- 渲染新的 PDF 文档
- 实例化 PdfSignature 类,并导入数字证书
- 根据需要添加其他信息
- 使用
标志
方法签署文件
from ironpdf import * # Cryptographically sign an existing PDF in 1 line of code! PdfSignature(r".\certificates\IronSoftware.p12", "123456").SignPdfFile("any.pdf") ##### Advanced example for more control ##### # Step 1. Create a PDF renderer = ChromePdfRenderer() doc = renderer.RenderHtmlAsPdf("<h1>Testing 2048 bit digital security</h1>") # Step 2. Create a Signature. # You may create a .pfx or .p12 PDF signing certificate using Adobe Acrobat Reader. # Read: https://helpx.adobe.com/acrobat/using/digital-ids.html signature = PdfSignature(r"certificates\IronSoftware.pfx", "123456") # Step 3. Optional signing options and a handwritten signature graphic signature.SigningContact = "support@ironsoftware.com" signature.SigningLocation = "Chicago, USA" signature.SigningReason = "To show how to sign a PDF" # Step 4. Sign the PDF with the PdfSignature. Multiple signing certificates may be used doc.Sign(signature) # Step 5. The PDF is not signed until saved to file, steam or byte array. doc.SaveAs("signed.pdf")
这段 Python 代码演示了如何使用 IronPDF 库对现有 PDF 进行加密签名并创建带有数字签名的 PDF。
标志
方法签署文件