mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
12 lines
500 B
TypeScript
12 lines
500 B
TypeScript
import { Certificate } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'PGP keygen',
|
|
path: '/pgp-key-pair-generator',
|
|
description: 'Generate new random PGP private and public keys (with or without passphrase).',
|
|
keywords: ['pgp', 'key', 'pair', 'generator', 'public', 'private', 'secret', 'ssh', 'pem', 'passphrase', 'password'],
|
|
component: () => import('./pgp-keygen.vue'),
|
|
icon: Certificate,
|
|
createdAt: new Date('2024-04-20'),
|
|
});
|