# Generating SSH Keys
# Prerequisites
Make sure that you have SSH installed. To check, simply run the following command:
ssh -V
# Creating SSH Keys
Without going into much detail about the different algorithms, you should look to create keys in either RSA
or Ed25519
algorithm.
# Ed25519
ssh-keygen -t ed25519 -a 100
# RSA
ssh-keygen -t rsa -b 4096 -a 100