PKCS12 on Windows with Java Keystore #13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
PKCS12 files on Windows can not be imported in Java ey store when openssl is too new or the key store too old.
Workaround:
Get PEM files on Windows and generate PKCS12 bundle with
-legacyoption, for example:openssl pkcs12 -inkey privkey.pem -in fullchain.pem -export -out bundle.pfx -legacy -password pass:changemeSo please add an option to get legacy formatted pkcs12 bundles.