Lines Matching full:compression
81 \&\- Compression support
112 These functions provide compression support for OpenSSL. Compression is used within
113 the OpenSSL library to support TLS record and certificate compression.
133 will be available even if their corresponding compression algorithm is not configured
136 \&\fBCOMP_zlib()\fR returns a \fBCOMP_METHOD\fR for stream-based ZLIB compression.
138 \&\fBCOMP_zlib_oneshot()\fR returns a \fBCOMP_METHOD\fR for one-shot ZLIB compression.
140 \&\fBCOMP_brotli()\fR returns a \fBCOMP_METHOD\fR for stream-based Brotli compression.
142 \&\fBCOMP_brotli_oneshot()\fR returns a \fBCOMP_METHOD\fR for one-shot Brotli compression.
144 \&\fBCOMP_zstd()\fR returns a \fBCOMP_METHOD\fR for stream-based Zstandard compression.
146 \&\fBCOMP_zstd_oneshot()\fR returns a \fBCOMP_METHOD\fR for one-shot Zstandard compression.
156 compression and expansion.
158 Compression support and compression algorithms must be enabled and built into
167 Compression of SSL/TLS records is not recommended, as it has been
174 Compression is also used to support certificate compression as described
180 \&\fBCOMP_zlib()\fR, \fBCOMP_brotli()\fR and \fBCOMP_zstd()\fR are stream-based compression methods.
181 Internal state (including compression dictionary) is maintained between calls.