Hi, This link will help you. http://java.sun.com/j2se/1.3/docs/tooldocs/win32/keytool.html
Here are the DER to PEM format conversions. 1. To convert a cert from DER format to PEM format: openssl x509 -in input.cer -inform DER -out output.cer -outform PEM 2. To convert a cert from PEM format to DER format: openssl x509 -in input.cer -inform PEM -out output.cer -outform DER 3. To convert a private key from DER format to PEM format: openssl rsa -in inkey.cer -inform DER -out outkey.cer -outform PEM 4. To convert a private key from PEM format to DER format: openssl rsa -in inkey.cer -inform PEM -out outkey.cer -outform DER Thank you, Dimuthu On Sat, 2007-10-13 at 16:52 +0000, shams jawaid wrote: > > Hi, sorry, > > the files dont seem to attach and send on the mailing list! i hope > this attachement works! > > > ______________________________________________________________ > From: [EMAIL PROTECTED] > To: [email protected] > Subject: rampart keys > Date: Sat, 13 Oct 2007 16:50:50 +0000 > > Hi there, > > can someone please show me how to extract the: > > [1] client side certificate - in CERT FORMAT > > [2] service side certificate - in CERT FORMAT > > [3] client side key - in PEM FORMAT > > from the service.jks and client.jks that i have attached. the > password is apache. or if possible, to show an example of the > attached files, > > thanks! > > > ______________________________________________________________ > Are you the Quizmaster? Play BrainBattle with a friend now! > > > ______________________________________________________________________ > Do you know a place like the back of your hand? Share local knowledge > with BackOfMyHand.com
