Lines Matching refs:compression
7 - handle SSL/TLS integrated compression methods
26 SSL_COMP_add_compression_method() adds the compression method B<cm> with
27 the identifier B<id> to the list of available compression methods. This
32 compression methods or NULL on error.
34 SSL_COMP_get0_name() returns the name of the compression method B<comp>.
36 SSL_COMP_get_id() returns the id of the compression method B<comp>.
39 maintain the internal table of compression methods.
43 The TLS standard (or SSLv3) allows the integration of compression methods
44 into the communication. The TLS RFC does however not specify compression
46 way to integrate compression with unknown peers. It is therefore currently not
47 recommended to integrate compression into applications. Applications for
48 non-public use may agree on certain compression methods. Using different
49 compression methods with the same identifier will lead to connection failure.
51 An OpenSSL client speaking a protocol that allows compression (SSLv3, TLSv1)
52 will unconditionally send the list of all compression methods enabled with
55 restrict the list of compression method on a per connection basis.
58 its own compression methods and will unconditionally activate compression
60 of compression methods supported on a per connection basis.
63 COMP_zlib() compression method available.
84 SSL_COMP_get0_name() returns the name of the compression method or NULL on error.
86 SSL_COMP_get_id() returns the name of the compression method or -1 on error.