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)
Leave a Reply