On Mon, 9 Mar 2009, swathi kota wrote: > Hi All, > can anyone tell me how to transfer certificates from one client to another > in openssl. > > Thanks, > swathi. >
You need two participants. 1. server 2. client with the 's_server' option you can emulate a SSL server. assuming your certificate is swathi.pem, here is the command to run in a console window. openssl s_server -cert swathi.pem -www this starts a server listening on standard SSL port 443. Now, for the client, you can start the browser and access the server through the following URL. httpS://localhost:443/ The browser pops up a dialog that shows you the server SSL certificate. Hope this helps. thanks Saifi.

