Generating an SSH Key

Recommended algorithm, shorter output and more secure:

ssh-keygen -t ed25519 -C ""Code language: Bash (bash)

or with a keyphrase:

ssh-keygen -t ed25519 -C "[email protected]"Code language: Bash (bash)

Common RSA algorithm:

ssh-keygen -t rsa -b 4096 -C ""Code language: Bash (bash)

or with a keyphrase:

ssh-keygen -t rsa -b 4096 -C "[email protected]"Code language: Bash (bash)

Posted

in

,

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.