feat(new tool): PGP Keygen

Fix part of #945 and part of #451
This commit is contained in:
sharevb 2024-04-28 12:59:15 +02:00 committed by ShareVB
parent 9eac9cb2a9
commit aa0f705a63
6 changed files with 201 additions and 13 deletions

View file

@ -0,0 +1,12 @@
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'),
});