


I had to use the below Java class to get the key out.
Keystore explorer convert pfx to jks mp4#
Mypicroll (26) canon (17) tips_tricks_traps (12) CFML (11) CF (10) Adobe (9) ColdFusion (9) musings (8) Android (6) Bangalore (6) canon 1100D (6) mobile (6) mobile app development (6) 1100D (5) 50mm (5) OpenOffice (5) cfdocument (5) Apple (4) application (4) HTML5 (3) JBOSS7.1 (3) Light (3) OSX (3) WAS (3) Websphere (3) deployment (3) warm (3) 18-55mm (2) Android Packages (2) Android SDK (2) Android SDK manager (2) AndroidUSBDriver (2) AndroidWebDriver (2) Brigade (2) Cordova (2) Debug (2) Diwali (2) Happy Diwali (2) IBM (2) Indian School of Business (2) Lion (2) MAC (2) Phonegap (2) Plugin (2) Plugins (2) Security (2) Server (2) Snow Leopard (2) Startup (2) actions (2) application deployment (2) bokeh (2) convert (2) destination (2) ear (2) eclipse (2) ideas (2) jboss (2) journey (2) lights (2) mobile market (2) present (2) sky (2) soft (2) something (2) source (2) thoughts (2) triggers (2) wildlife bangalore lion flora fauna jungle forest animals wild (2) 2016 (1) 7777 (1) Cloud (1) Database (1) Debugging Service (1) Digital Signtures (1) Education (1) English (1) Extras (1) Flash (1) Goddess of Wealth (1) HTML5 videos (1) HTTP Server (1) HTTPServer (1) HotFix (1) Hybrid Cloud (1) Hyderabad (1) IAAS (1) ISB (1) India (1) Installation (1) JDBC (1) JKS (1) JSON (1) JSP (1) Javascript (1) MBA (1) MP4 (1) ND (1) NYE (1) New Years (1) OGV (1) ORM (1) OpenSSL (1) PFX (1) PKCS12 (1) PluginResult (1) Private Cloud (1) Product (1) Public Cloud (1) RHEL (1) Updates (1) Videos (1) WAS 8 (1) WAS 8.5 (1) WEBM (1) Windows (1) adb (1) adb devices (1) anaar (1) canon winter sun cold cat kittens pets outdoors (1) cer file (1) cfmediaplayer (1) cfpdf (1) crackers (1) decrypt (1) deployment fails (1) devices (1) dusk (1) encryption (1) flora (1) flowers (1) green (1) iOS (1) issues (1) jquery (1) jquery-mobile (1) keystore (1) keytool (1) park (1) password (1) path (1) phonegap 1.7 (1) phuljhari (1) plugin-cfg.xml (1) pluging (1) private key (1) public key (1) rerouting (1) rocket (1) samsung (1) school (1) seeti (1) smartphone (1) sounds (1) standalone.If anyone finds themselves here trying to get a private key out of a JCEKS type keystore, I found that the keytool and openssl instructions described in other answers did not work.

Keytool -importkeystore -srckeystore MyPfx.pfx -srcstoretype pkcs12 -srcstorepass mysrcpassword -srcalias alias -destkeystore exportfrompfx.jks -deststoretype jks -deststorepass mydestpassword -destalias destalias Use keytool to import that alias into your JKS keystore Get the alias using the above mentioned list command To selectively add each certificate use its alias. Keytool -list -storetype jks -keystore exportfrompfx.jks -v Use the following command then to verify your new keystore: This process will create a new jks file and call it exportfrompfx.jksĪll the certificates with their aliases will be exported from MyPfx.pfx to exportfrompfx.jks Keytool -importkeystore -srckeystore MyPfx.pfx -srcstoretype pkcs12 -srcstorepass mysrcpassword -destkeystore exportfrompfx.jks -deststoretype jks -deststorepass mydestpassword Its actually as simple as what I quote below. Most blogs talk about how OpenSSL would help you do it and other go on about new tools.But its all within java keytool's capabilities. Many times we need to convert our PKCS12 keystore/digital signature/digital id file to JKS files.
