it-tools/src/tools/ed25519-key-pair-generator/index.ts
sharevb ca44c5c52a 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)
2024-02-18 12:37:30 +01:00

12 lines
544 B
TypeScript

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