$devtoolkit.sh/tools/ssh-key-generator

SSH Key Generator

Generate an RSA SSH key pair. Shows the OpenSSH public key and the PEM private key.

Key size:

Related Tools

FAQ

Is the private key secure?
The key is generated and displayed in your browser only — nothing is transmitted. Treat any generated key as you would any private key.
What format is the public key in?
The public key is in OpenSSH authorized_keys format: ssh-rsa <base64> <comment>.
Can I use this key with GitHub or GitLab?
Yes. Copy the public key and add it to your account's SSH keys page. The private key should be saved securely on your machine.

Generate an RSA-2048 or RSA-4096 key pair using Web Crypto. The public key is encoded in OpenSSH wire format (ssh-rsa AAAA... comment). The private key is exported as PKCS#8 PEM. You can also copy the openssl command to convert the private key to the traditional OpenSSH private key format.

/tools/ssh-key-generatorv1.0.0