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:
sharevb 2024-02-17 17:23:16 +01:00 committed by ShareVB
parent 60841f6e4a
commit ca44c5c52a
5 changed files with 138 additions and 47 deletions

View 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'),
});