Fwd: An OpenSSL server with NULL cipher support

2008-02-05 Thread JCA
Oops! The -nocert option in the s_server invocation should not be there. -- Forwarded message -- From: JCA <[EMAIL PROTECTED]> Date: Feb 4, 2008 8:28 AM Subject: Fwd: An OpenSSL server with NULL cipher support To: openssl-users@openssl.org OK, I found it. In cas

Re: Fwd: An OpenSSL server with NULL cipher support

2008-02-04 Thread Victor Duchovni
On Mon, Feb 04, 2008 at 08:28:04AM -0800, JCA wrote: > OK, I found it. In case this helps somebody out there, the way it > works for me is the following: > > The client is invoked as > > openssl s_client -connect 127.0.0.1:443 -cipher COMPLEMENTOFALL:aNULL > > and the server as > > ope

Fwd: An OpenSSL server with NULL cipher support

2008-02-04 Thread JCA
With this, the server accepts the TLS_RSA_WITH_NULL_SHA ciphersuite without complaints. -- Forwarded message -- From: JCA <[EMAIL PROTECTED]> Date: Feb 3, 2008 9:44 AM Subject: An OpenSSL server with NULL cipher support To: openssl-users@openssl.org I am trying to u

Re: An OpenSSL server with NULL cipher support

2008-02-04 Thread Victor Duchovni
On Sun, Feb 03, 2008 at 09:44:03AM -0800, JCA wrote: > I am trying to use the openssl command line utility in order to > launch an SSL server supporting the NULL encryption cipher (I am > trying to debug a simple SSL client.) To that effect, I launch openssl > as follows: You are not being sp

An OpenSSL server with NULL cipher support

2008-02-04 Thread JCA
I am trying to use the openssl command line utility in order to launch an SSL server supporting the NULL encryption cipher (I am trying to debug a simple SSL client.) To that effect, I launch openssl as follows: # openssl s_server -accept 443 -nocert -WWW -cipher 'ALL:NULL' The client is