How to create a SSH key
SSH keys are useful as they allow you to securely identify yourself. You can create a SSH key by doing the following
Creating a SSH Key
ssh-keygen -t rsa -b 4096
| arg | meaning | suggested |
|---|---|---|
| -t | type | rsa |
| -b | bits | empty or 4096 |
SSH keys are useful as they allow you to securely identify yourself. You can create a SSH key by doing the following
ssh-keygen -t rsa -b 4096
| arg | meaning | suggested |
|---|---|---|
| -t | type | rsa |
| -b | bits | empty or 4096 |