Difference between revisions of "Pfx openssll"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes")
 
Line 1: Line 1:
 +
No password on out pems
 +
```
 
openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys
 
openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys
 
openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes
 
openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes
 +
```

Revision as of 19:57, 9 September 2021

No password on out pems

openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys
openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes