Step 1
Recompute the fingerprint of the file
Use the tool built into your computer, with nothing to install. Open a terminal in the folder containing the file and run the command for your system.
| System | Command |
|---|---|
| Windows (PowerShell) | Get-FileHash "fichier.pdf" -Algorithm SHA256 |
| Windows (Command Prompt) | certutil -hashfile "fichier.pdf" SHA256 |
| macOS | shasum -a 256 fichier.pdf |
| Linux | sha256sum fichier.pdf |
The result is a 64-character string. It must be identical to the “Empreinte SHA-256” (SHA-256 fingerprint) line on the certificate. Windows displays it in capital letters, which makes no difference.