Compression in SSL

2012-07-08 Thread Sebastian Raymond
Hello, There are two types of compression possible . 1. Stateful 2. Stateless Where it is decided in Openssl source code that compression will be stateful or stateless? The openssl source code is very confusing. I could find all the function. Most of them are in c_zlib.c But I could not find the

RE: About compression in SSL.

2012-01-17 Thread banr...@gmail.com
where it does not. Regards, Rohit -Original message- From: Dr. Stephen Henson Sent: 17/01/2012, 6:10 pm To: openssl-users@openssl.org Subject: Re: About compression in SSL. On Tue, Jan 17, 2012, nilesh wrote: > On Tuesday 17 January 2012 04:46 PM, t...@terralogic.net wrote: > &g

Re: About compression in SSL.

2012-01-17 Thread Dr. Stephen Henson
On Tue, Jan 17, 2012, nilesh wrote: > On Tuesday 17 January 2012 04:46 PM, t...@terralogic.net wrote: > >I would want to double check this. The APACHE docs found here state the > >following: > > > >http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html > > > >"How do I get SSL compression working? >

Re: About compression in SSL.

2012-01-17 Thread nilesh
On Tuesday 17 January 2012 04:46 PM, t...@terralogic.net wrote: I would want to double check this. The APACHE docs found here state the following: http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html "How do I get SSL compression working? Although SSL compression negotiation was defined in the

Re: About compression in SSL.

2012-01-17 Thread terr
I would want to double check this. The APACHE docs found here state the following: http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html "How do I get SSL compression working? Although SSL compression negotiation was defined in the specification of SSLv2 and TLS, it took until May 2004 for RFC 37

Re: About compression in SSL.

2012-01-17 Thread nilesh
On Tuesday 17 January 2012 04:13 PM, Jakob Bohm wrote: On 1/17/2012 11:27 AM, nilesh wrote: Hi, As per the RFC2246, the data might be compressed and then encrypted. And the decryption function does the reverse operations. But when I setup server to capture SSL3.0 and TLS1.0 traces, I have neve

Re: About compression in SSL.

2012-01-17 Thread Jakob Bohm
On 1/17/2012 11:27 AM, nilesh wrote: Hi, As per the RFC2246, the data might be compressed and then encrypted. And the decryption function does the reverse operations. But when I setup server to capture SSL3.0 and TLS1.0 traces, I have never observed any compression algorithm being used. The r

About compression in SSL.

2012-01-17 Thread nilesh
Hi, As per the RFC2246, the data might be compressed and then encrypted. And the decryption function does the reverse operations. But when I setup server to capture SSL3.0 and TLS1.0 traces, I have never observed any compression algorithm being used. The record is just encrypted and sent. Cou