> For the complete documentation index, see [llms.txt](https://t1t.gitbook.io/tutorial-pdf-digital-signature-validation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://t1t.gitbook.io/tutorial-pdf-digital-signature-validation/pdf-digital-signature-validation.md).

# PDF Digital Signature Validation

Did you ever receive a PDF document which is digitally signed? When you open this document in Adobe Acrobat Reader, you'll notice that it is validating the document by showing a very small 'green checkbox' in the top left corner. Something like this:

![Signature is valid](/files/-L9hs_BqTCyc9eyj50bG)

Ok, great, but what does it mean?

It means that this document has been 'digitally signed' or better, somebody has used '**a digital certificate**' to perform '**a signature**' on the content of a PDF document.

Hold up, what do we mean with a 'digital certificate' and where can I find them?

Simply put, a certificate can be seen as an electronic document which you can use to authenticate or digitally sign. A digital certificate contains information about an identity. You can find these certificates on EU national ID cards for example, or you can buy them from a Certificate Authority (CA), if you require legally binding signatures.

Now, how does that work? And how can I validate digitally signed PDF documents using an API?

This tutorial will explain:

* how to validate documents in Adobe Acrobat Reader.
* how to perform the same validation of digitally signed document in your own application.

For the latter, a step-by-step approach will be used. An example of an implementation is provided on Github:

<https://github.com/Trust1Team/vwapp>

The application is [available online](https://validation.t1t.be/).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://t1t.gitbook.io/tutorial-pdf-digital-signature-validation/pdf-digital-signature-validation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
