How to remove Private Key Password from pkcs12 container? 
Sunday, 14 April 2024, 12:25 - OpenSSL
Posted by Administrator
- Export to temporary pem file
openssl pkcs12 -in protected.p12 -nodes -out temp.pem
# -> Enter password


- Convert pem back to p12
openssl pkcs12 -export -in temp.pem  -out unprotected.p12
# -> Just press [return] twice for no password


- Remove temporary certificate
rm temp.pem


add comment ( 21 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 56 )

| 1 | 2 | 3 | 4 | 5 | 6 | 7 | Next> Last>>