Root ca chain in one file

2006-03-13 Thread Martijn Moret
Hi, One of our customers is using a certificate from globalsign. They use three root certificate's in the chain. Is there a way to create a pem formatted file with all three certificate's from the chain? Regards Martijn __

Re: Root ca chain in one file

2006-03-13 Thread Richard Salz
One of our customers is using a certificate from globalsign. They use three root certificate's in the chain. A definition of root certificate is that nobody in the chain comes after it. So you don't mean three root certificates, but perhaps three intermediates or two intermediates and a

Re: Root ca chain in one file

2006-03-13 Thread Frank Laub
The normal PEM_read, etc., functionsstop when they find the first object of the right type.If you want to read in a multiple certs from a single file, you probably want to use adata format such as PKCS7 or PKCS12 that supports it natively.Actually you can use PEM_X509_INFO_read_bio() to read in a