it-tools/src/tools/certificate-key-parser/index.ts
sharevb ce8199e338 feat(new tool): Certificate/Key Parser and infos
Parse Certificate and Keys (Public, Private, Signature, Fingerprint...) and displays infos
Fix #671
2024-03-03 12:05:40 +01:00

12 lines
406 B
TypeScript

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'),
});