Try..
X509* cert = PEM_read_bio_X509(bio_cert,NULL, 0, NULL);
http://www.openssl.org/docs/crypto/pem.html#
Check the BUGS section down the bottom.
Brad
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of BiGNoRm6969
Sent: Tuesday, December 09, 2008 4:01 AM
Hi,
please i don't want anymore to receive mail from [EMAIL PROTECTED]
Do you know how kann i log out from Mailing list?
Thank you in advance for your answer.
Carole Djomo.
Hi all,
using openldap compiled with openssl 0.9.8f i'm experiencing a lot of
problems, the server is often shutting down with the following in the debug:
TLS trace: SSL_accept:error in before/accept initialization
TLS: can't accept.
TLS: error:07064041:memory buffer routines:BUF_MEM_grow:malloc
Have you try to initialize cert to NULL before use?
Francesco Petruzzi
[EMAIL PROTECTED]
The information contained in this electronic message and any attachments
(the "Message") is intended for one or more specific individuals or
entities, and may be confidential, proprietary, privileg
Hi,
The function PEM_read_bio_X509 always create a Segmentatio Fault.
Code:
string certificateFile =
"/home/norm/Desktop/tmp/SSLServer_RootCertificate.pem";
X509* cert;
BIO* bio_cert = BIO_new_file(certificateFile.c_str(), "rb");
PEM_read_bio_X509(bio_cert, &cert, NULL, NULL);
Any idea whats ca