Re: How to create certificates & chains in DER format

2002-11-15 Thread Michael Krustev
Use d2i_X509 to convert binary /Der/ format buffer to certificate structure and i2d_X509 - to convert X509 struct into binary stream. --- [EMAIL PROTECTED] wrote: > > > hi > i tried creating certificates in pem format and also > having rsa keys in pem > format. > I successfully run server and c

Re: PKCS12 and Private Key

2002-11-14 Thread Michael Krustev
No. It's not possible!!! Sorry, PKCS12 structure holds public/private key pair... --- Oliver Wulff <[EMAIL PROTECTED]> wrote: > Hi > > Is it possible to store only the private key in a > p12 file and hold the > certificate and ca certificates in another p12 file? > If yes, how can I do that? >

Re: Do I need ssleay32.lib and libeay32.lib

2002-11-14 Thread Michael Krustev
You don't need libeay32.dll and libssl32.dll when you statically link OpenSSL in your code /libeay32.lib must be approximatelly 2 Mb,ssleay32.lib - 600 Kb/. If you link them dynamically /libeay32.lib - 360 Kb, ssleay32.lib - 64 Kb approximatelly/ - you will need the dlls. --- Ron <[EMAIL PROTECTE