How to create public key from SSH private key?
Lost SSH public key, don’t worry, you can generate it from your private key file. If you have an SSH private key, you can generate the public key using the ssh-keygen command. ssh-keygen -f PRIVATE_KEY_HERE -y -y option will read a private OpenSSH format file and print an OpenSSH public key to stdout. -f specifies … Read more