aboutsummaryrefslogtreecommitdiff
path: root/src/tools/pdf-signature-checker/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-11-12 23:22:41 +0100
committerGravatar GitHub <noreply@github.com> 2023-11-12 22:22:41 +0000
commit478192065e6a251579a08089235ad1f26e0cc9c9 (patch)
treeb309be21ca831eaf38436f78d06101f50cec401c /src/tools/pdf-signature-checker/index.ts
parent205e360400d588a5f9ddc9595fca29db68a07bf6 (diff)
downloadit-tools-478192065e6a251579a08089235ad1f26e0cc9c9.tar.gz
it-tools-478192065e6a251579a08089235ad1f26e0cc9c9.tar.zst
it-tools-478192065e6a251579a08089235ad1f26e0cc9c9.zip
feat(new tool): pdf signature checker (#745)
Diffstat (limited to 'src/tools/pdf-signature-checker/index.ts')
-rw-r--r--src/tools/pdf-signature-checker/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/pdf-signature-checker/index.ts b/src/tools/pdf-signature-checker/index.ts
new file mode 100644
index 0000000..5456397
--- /dev/null
+++ b/src/tools/pdf-signature-checker/index.ts
@@ -0,0 +1,12 @@
+import { defineTool } from '../tool';
+import FileCertIcon from '~icons/mdi/file-certificate-outline';
+
+export const tool = defineTool({
+ name: 'PDF signature checker',
+ path: '/pdf-signature-checker',
+ description: 'Verify the signatures of a PDF file. A signed PDF file contains one or more signatures that may be used to determine whether the contents of the file have been altered since the file was signed.',
+ keywords: ['pdf', 'signature', 'checker', 'verify', 'validate', 'sign'],
+ component: () => import('./pdf-signature-checker.vue'),
+ icon: FileCertIcon,
+ createdAt: new Date('2023-12-09'),
+});