aboutsummaryrefslogtreecommitdiff
path: root/src/tools/rsa-key-pair-generator/index.ts
blob: c8ab4cdbe32172cca56df8c0fbb5d1d2455c4ede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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,
});