Horje
how to extract key and cert from pfx Code Example
how to extract key and cert from pfx
# enter password and pass phrase used to encrypt when prompted
openssl pkcs12 -in [yourfile.pfx] -nocerts -out [cert_encr.key]
openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [cert.crt]
# decrypt the key file
openssl rsa -in [cert_encr.key] -out [cert.key]
Source: www.ibm.com




Shell

Related
remove metadata ubuntu Code Example remove metadata ubuntu Code Example
man command not found arch Code Example man command not found arch Code Example
how to list running processes in ubuntu Code Example how to list running processes in ubuntu Code Example
npm install dev dependencies only Code Example npm install dev dependencies only Code Example
vs code installed extensions list command Code Example vs code installed extensions list command Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10