All posts
SSH Key Pair Generator: Ed25519, RSA and OpenSSH Format Online
August 15, 2026 · DevTools
ssh
ed25519
security
git
openssh
ssh-keygen is the standard tool, but sometimes you need a key in the browser — restricted environments, quick Git deploy keys, or comparing fingerprints without a terminal.
The SSH Key Pair Generator creates:
- OpenSSH public key — paste into
authorized_keysor GitHub/GitLab - PEM private key — store in
~/.sshwithchmod 600 - SHA256 fingerprint — compare with
ssh-keygen -lf
Algorithm choice
| Algorithm | When to use |
|---|---|
| Ed25519 | Default for new keys — fast and modern |
| ECDSA P-256 | When Ed25519 is unavailable |
| RSA 4096 | Legacy systems requiring RSA |
Keys are generated locally with Web Crypto (node-forge fallback). Private material never leaves your device.