mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 22:07:10 -04:00
feat(new tool): Ed25519 Key Pair Generator
Fix #281 (ed25519 key pairs, passphrase and openssh format) Supports generation in PEM, PKCS#8, OpenSSH Standard (with or without passphrase), OpenSSH (new format) and PuTTY (no passphrase)
This commit is contained in:
parent
60841f6e4a
commit
ca44c5c52a
5 changed files with 138 additions and 47 deletions
12
src/tools/ed25519-key-pair-generator/index.ts
Normal file
12
src/tools/ed25519-key-pair-generator/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Certificate } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Ed25519 key pair generator',
|
||||
path: '/ed25519-key-pair-generator',
|
||||
description: 'Generate new random Ed25519 private and public keys (with or without passphrase).',
|
||||
keywords: ['ed25519', 'key', 'pair', 'generator', 'public', 'private', 'secret', 'ssh', 'pem', 'passphrase', 'password'],
|
||||
component: () => import('./ed25519-key-pair-generator.vue'),
|
||||
icon: Certificate,
|
||||
createdAt: new Date('2024-02-14'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue