SSH Key Analyzer
Generate SSH key fingerprints and convert between SSH key formats.
Category: Security
·
v1.0.0
ED25519 (Recommended)
ssh-keygen -t ed25519 -C "[email protected]"
RSA 4096-bit
ssh-keygen -t rsa -b 4096 -C "[email protected]"
ECDSA 521-bit
ssh-keygen -t ecdsa -b 521 -C "[email protected]"
View Fingerprint of Existing Key
ssh-keygen -lf ~/.ssh/id_ed25519.pub
Convert OpenSSH to PEM
ssh-keygen -p -m PEM -f ~/.ssh/id_rsa
About This Tool
This SSH key analyzer generates fingerprints from SSH public keys and converts between different SSH key formats including OpenSSH, PEM, and PKCS8. It is a valuable tool for system administrators, DevOps engineers, and developers who need to verify key identities or transform keys for use across different systems. The tool processes keys entirely in the browser, ensuring your sensitive cryptographic material never leaves your device.
How to Use
- Paste your SSH public key into the input field
- View the generated fingerprint in MD5 and SHA256 formats
- Select a target format to convert your key between OpenSSH, PEM, or other formats
- Copy the fingerprint or converted key for use in server configuration or verification