The man page for "SSL_CTX_use_certificate_chain_file" states:
SSL_CTX_use_certificate_chain_file() loads a certificate chain from
file into ctx. The certificates must be in PEM format and must be
sorted starting with the certificate to the highest level (root CA).
Th
It's good. I have found a solution on msdn. I have to
duplicate the socket handler ;
DuplicateHandle(GetCurrentProcess(),(HANDLE)ctrl,
GetCurrentProcess(),(HANDLE*)&ctrl_dup,
0, TRUE, /* inherit socket */
DUPLICATE_SAME_ACCESS);
Then put ctrl_dup on cmd_line args for
CreateProc
Hi !
Dr Henson refers to openssl-0.9.7.your-dist/apps (if you're working in a Linux/Unix box), in that directory there is an openssl.cnf file (openssl example configuraton file).
If you're working in Win32 there must be an openssl.cnf in C:\openssl-folder\bin.In both cases you must customize (if
Thank you for the reply.
I do not have an openssl.cnf file anywhere in the Apache Group directory nor
in its subdirectories.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Dr. Stephen Henson
Sent: Sunday, April 25, 2004 12:07 PM
To: [EMAIL PROTECTED]
Subjec
On April 26, 2004 06:11 pm, Andrew Marlow wrote:
> [EMAIL PROTECTED] writes:
> >I've written a C++ Socket wrapper library based upon the Berkeley Socket
> >Interface. It also optionally supports SSL through the use of OpenSSL.
> >Linux (Unix possibly) only currently supported. A Win32 port will b
Richard Levitte - VMS Whacker wrote:
In message <[EMAIL PROTECTED]> on Mon, 26 Apr 2004 11:56:01 -0700, Geoffrey Huang <[EMAIL
PROTECTED]> said:
geoff> I'm experiencing an intermittent crash in one of my
geoff> application's unit tests. When it crashes, it does so at
geoff> DH_free(). The call s
Hi all,
I'm working on a multi-clients server under Windows2k.
My problem is about file descriptor / socket confusion
when creating a BIO.
In fact main code's jobe is to accept the socket in an
"int" variable, then CreateProcess(). This function is
called with newly accepted socket as argument, i
Hello,
Has anyone seen this type of error on AIX 5.1??
Also, does anyone know how to override the path to the openssl.cnf file?
openssl req -new -nodes -keyout private.key -out public.csr
Using configuration from
/ii/pa/openssl-0.9.6.7/usr/local/ssl/openssl.cnf
Unable to load con
In message <[EMAIL PROTECTED]> on Mon, 26 Apr 2004 08:27:12 +0200, testpgp <[EMAIL
PROTECTED]> said:
testpgp> I'm trying to double sign a CA certificate with two others CA
testpgp> (CA1 & CA2) Unfortunately, I can't see such options with
testpgp> openssl. The command I usually use is the followin