SSH Key Generator
SSH Key Pair: Generate RSA SSH key pairs for secure server authentication. Create public and private keys with customizable parameters.
Generated SSH Key Pair
Key Details:
- Algorithm: {{ sshKey.algorithm }}
- Key Size: {{ sshKey.keySize }} bits
- Comment: {{ sshKey.comment || 'None' }}
- Format: {{ sshKey.format }}
- Fingerprint: {{ sshKey.fingerprint }}
Public Key
{{ sshKey.publicKey }}
Private Key
{{ sshKey.privateKey }}
Important:
- Keep your private key secure and never share it
- Add the public key to your server's
~/.ssh/authorized_keysfile - Set proper permissions:
chmod 600 ~/.ssh/private_key - Test the connection:
ssh -i ~/.ssh/private_key user@server
{{ error }}