Allows to verify if the electronic signature of a PDF document is valid.

1 pdf.verify

<pdf.verify encoding='encoding'>
    <privatekey /> ?
    <inputstream_pdf /> ?
</pdf.verify>
Example

Obtains an array with the images of each one of the pages of the PDF document.

Copy
<println>
  <pdf.verify>
    <file type='absolute' name='private_key.p7b' />
    <file type='absolute' name='autosigned.pdf' />
  </pdf.verify>
</println>
<println>
  <pdf.verify>
    <null />
    <file type='absolute' name='signed.pdf' />
  </pdf.verify>
</println>