mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-12 17:11:31 -04:00
feat(new-tool): RSA key pair generator
This commit is contained in:
parent
7958e2e075
commit
30e9149d61
7 changed files with 112 additions and 2 deletions
11
src/tools/rsa-key-pair-generator/index.ts
Normal file
11
src/tools/rsa-key-pair-generator/index.ts
Normal 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,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue