Skip to content

Instantly share code, notes, and snippets.

@wickywills
Created March 30, 2020 08:27
Show Gist options
  • Save wickywills/a439d9f76e1c530260cfba0b358618a5 to your computer and use it in GitHub Desktop.
Save wickywills/a439d9f76e1c530260cfba0b358618a5 to your computer and use it in GitHub Desktop.
Extract from unencrypted PFX
```
openssl pkcs12 -in [file.pfx] -out keys_out.txt
```
Extract from encrypted PFX
```
openssl pkcs12 -in [file.pfx] -out keys.pem -nodes
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment