Created
May 4, 2020 07:17
-
-
Save mrsinguyen/ab98c338587814507c897552cafd979d to your computer and use it in GitHub Desktop.
Convert SSH key to pem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate the ssh key | |
ssh-keygen -t rsa -b 4096 -f /tmp/key | |
# Convert it to a PEM file | |
ssh-keygen -p -m PEM -f /tmp/key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment