SSH Key Info

Parse SSH public keys and display key type and fingerprint.

RSA 4096Strong
Widely supported, slower
ssh-keygen -t rsa -b 4096 -C "your@email.com"
RSA 2048Good
Minimum recommended
ssh-keygen -t rsa -b 2048 -C "your@email.com"
ED25519Very Strong
Recommended, fastest
ssh-keygen -t ed25519 -C "your@email.com"
ECDSA 521Very Strong
Elliptic curve
ssh-keygen -t ecdsa -b 521 -C "your@email.com"

Related Tools

About this tool

Parse SSH public keys and display key type and fingerprint.