feat(new-tool): RSA key pair generator

This commit is contained in:
Corentin Thomasset 2023-03-10 18:16:55 +01:00
parent 7958e2e075
commit 30e9149d61
No known key found for this signature in database
GPG key ID: DBD997E935996158
7 changed files with 112 additions and 2 deletions

View file

@ -0,0 +1,11 @@
import { Certificate } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'RSA key pair generator',
path: '/rsa-key-pair-generator',
description: 'Generate new random RSA private and public key pem certificates.',
keywords: ['rsa', 'key', 'pair', 'generator', 'public', 'private', 'secret', 'ssh', 'pem'],
component: () => import('./rsa-key-pair-generator.vue'),
icon: Certificate,
});