For example, suppose I have a home network and it’s not secured. In this case, If I have to transfer data from a source to a destination, then it can be attacked by cybercriminals using the Man in the middle (MITM) approach. However, if I use the SSH protocol to perform the same task, then the communication would remain secured using cryptographic technology.

Generate an SSH key in Windows 11/10

In order to generate the SSH key in Windows 11/10, you need to first ensure that you have installed the OpenSSH Client feature on your device. OpenSSH supports all SSH protocol versions and provides secure tunneling capabilities. It encrypts all your traffic and avoids the risks of hijacking. So, open the Windows Settings and navigate to Apps > Apps & features. In the right pane, click on the Optional features link.

Windows 11

Windows 10

Now, check whether the OpenSSH Client is available on the list. If it is not available on the list then click on the Add a feature button. Select OpenSSH Client from the list and then install it. After proper installation, restart your computer to be sure.

In the next step, open Command Prompt. Once it opens, type the following command line and hit Enter. At this time, the system will ask you to save the default location. You can do it by pressing the Enter key.You can also change the path as per your requirement. However, by default, it offers the location in the following form: After that, the system asks you to set a password (passphrase). While typing the password, you will not see anything but it gets recorded there. Next, enter the same password to confirm it. If you want, you can continue without setting a password. To do so, just hit Enter key otherwise, type the passphrase there. As you press the Enter key, the fingerprint for your key and SHA256 will appear. The default algorithm is RSA 2048. The public key will be saved to the id_rsa.pub file. By default, it is located in the following form: We recommend you not share the private SSH key (id_rsa) for obvious reasons. I hope this guide would be helpful to generate SSH keys for your system.