Last active
December 4, 2020 01:54
-
-
Save mvidaldp/23a9f296b4aee6c10212b49067ff0f48 to your computer and use it in GitHub Desktop.
Remove the pass phrase (password) of an RSA key
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
# assuming you know the key you want to remove | |
openssl rsa -in key_with_pass.pem -out key_without_pass.pem | |
# source: https://stackoverflow.com/a/18394172 - https://www.madboa.com/geek/openssl/#key-removepass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment