使用python提取pdf中的数字签名

时间:2019-07-03 10:40:57

标签: python-3.x pypdf2 pdfminer python-pdfkit

我需要获取数字签名的签名内容,例如签名名称和签名日期以及整个签名部分的坐标。

我尝试使用pypdf2,pdfminer和endesive模块之类的不同模块,在这些endiveive模块中,是要提供该pdf文档中是否存在数字签名。

这是使用endesive模块获取签名是否存在的代码库。

   fname = 'filename'
   data = open(fname, 'rb').read()
   pdf.verify(data)

   The above code gives the following output.
   cert.issuer: OrderedDict([('common_name', 'Srikanth'), ('organization_name', ''), ('organizational_unit_name', ''), ('email_address', 'srikanth@yahoo.com'), ('country_name', 'India')])
cert.subject: OrderedDict([('common_name', 'Srikanth'), ('organization_name', ''), ('organizational_unit_name', ''), ('email_address', 'srikanth@yahoo.com'), ('country_name', 'India')])
Out[13]: (True, True, False)

请参阅以下参考链接以获取示例数字签名: https://www.globalsign.com/en-in/blog/certifying-vs-approval-signatures-in-adobe/

我需要获取数字签名值,例如: 人名:Daniel Farrel 签名日期:2017.10.05 08.44.11 -04'00'

0 个答案:

没有答案