Re: Loading a certifcate from file into a X509 struct

2002-10-02 Thread Nils Larsch
On Mittwoch, 2. Oktober 2002 15:13, Radboud Platvoet wrote: > I am sure that works on a Unix machine, but unfortunately I am on Windows. > Could you maybe copy and paste the output of "man pem" in an email? see: http://www.openssl.org/docs/crypto/pem.html or use the pod2html command. Regards, Ni

Re: Loading a certifcate from file into a X509 struct

2002-10-02 Thread Steve Haslam
On Wed, Oct 02, 2002 at 03:13:55PM +0200, Radboud Platvoet wrote: > I am sure that works on a Unix machine, but unfortunately I am on Windows. > Could you maybe copy and paste the output of "man pem" in an email? > > Thanks, > Radboud > > PS: I am sure that the documentation for OpenSSL on Unix

RE: Loading a certifcate from file into a X509 struct

2002-10-02 Thread Radboud Platvoet
rsch Sent: Wednesday, October 02, 2002 2:46 PM To: [EMAIL PROTECTED] Subject: Re: Loading a certifcate from file into a X509 struct Radboud Platvoet wrote: [...] > This is the definition (after you resolve the macro): > > (X509 *) PEM_read_X509( FILE *fp, X509 **x, pem_password_cb *cb, v

Re: Loading a certifcate from file into a X509 struct

2002-10-02 Thread Nils Larsch
Radboud Platvoet wrote: [...] > This is the definition (after you resolve the macro): > > (X509 *) PEM_read_X509( FILE *fp, X509 **x, pem_password_cb *cb, void *u ); > > These I figured out: > - fp is most likely an open file pointer to the certificate file. > - x is most likely a double poin

Loading a certifcate from file into a X509 struct

2002-10-02 Thread Radboud Platvoet
Hi everyone, I would like to load a certificate from file into a X509 struct without too much hassle. (I found something for which I have specific questions below, but if you know another way, then please tell me that as well.) I found the PEM_read_X509 macro and figured that it might do for me