Re: [openssl.org #1726] Bug with FIPS_mode_set

2008-08-04 Thread Tim Hudson
Brad Smith via RT wrote: We are running on SLES 10 SP2. Some of our processes need to enable and disable FIPS multiple times within its execution. The following code worked on openssl-fips-1.1.1 but appears to be broken in 1.1.2: // this works int rc = FIPS_mode_set( 1 ); // and this works

Re: Last portion SSL_read only after a SSL_write . Please Help.

2008-08-04 Thread Ger Hobbelt
>> As I mentioned before, TCP is a stream protocol, not a message >> protocol, so when you expect to receive all data before sending >> another request over the same TCP socket, that is plain *wrong*, >> though some people here appear to think this is possible. > > How would any interactive TCP pro

[openssl.org #1726] Bug with FIPS_mode_set

2008-08-04 Thread Brad Smith via RT
We are running on SLES 10 SP2. Some of our processes need to enable and disable FIPS multiple times within its execution. The following code worked on openssl-fips-1.1.1 but appears to be broken in 1.1.2: // this works int rc = FIPS_mode_set( 1 ); // and this works rc = FIPS_mode_set( 0 );