mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
feat(new tool): Certificate/Key Parser and infos
Parse Certificate and Keys (Public, Private, Signature, Fingerprint...) and displays infos Fix #671
This commit is contained in:
parent
e073b2babf
commit
ce8199e338
7 changed files with 479 additions and 28 deletions
12
src/tools/certificate-key-parser/index.ts
Normal file
12
src/tools/certificate-key-parser/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { FileCertificate } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Certificate/Key parser',
|
||||
path: '/certificate-key-parser',
|
||||
description: 'Parse Key and Certificate',
|
||||
keywords: ['certificate', 'key', 'parser'],
|
||||
component: () => import('./certificate-key-parser.vue'),
|
||||
icon: FileCertificate,
|
||||
createdAt: new Date('2024-02-22'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue