Lines Matching full:compression
22 - Compression support
53 These functions provide compression support for OpenSSL. Compression is used within
54 the OpenSSL library to support TLS record and certificate compression.
74 will be available even if their corresponding compression algorithm is not configured
81 COMP_zlib() returns a B<COMP_METHOD> for stream-based ZLIB compression.
85 COMP_zlib_oneshot() returns a B<COMP_METHOD> for one-shot ZLIB compression.
89 COMP_brotli() returns a B<COMP_METHOD> for stream-based Brotli compression.
93 COMP_brotli_oneshot() returns a B<COMP_METHOD> for one-shot Brotli compression.
97 COMP_zstd() returns a B<COMP_METHOD> for stream-based Zstandard compression.
101 COMP_zstd_oneshot() returns a B<COMP_METHOD> for one-shot Zstandard compression.
114 compression and expansion.
116 Compression support and compression algorithms must be enabled and built into
125 Compression of SSL/TLS records is not recommended, as it has been
132 Compression is also used to support certificate compression as described
138 COMP_zlib(), COMP_brotli() and COMP_zstd() are stream-based compression methods.
139 Internal state (including compression dictionary) is maintained between calls.