mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00

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)
12 lines
544 B
TypeScript
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'),
|
|
});
|