React+Vite app that generates Ed25519 and RSA SSH keys entirely in the browser using Web Crypto API and micro-key-producer. Styled with Tailwind CSS v4 dark theme. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
304 B
HTML
13 lines
304 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>SSH Key Generator</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|