Searched refs:compression (Results 1 – 21 of 21) sorted by relevance
/openssl-master/doc/man3/ |
A D | SSL_COMP_add_compression_method.pod | 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. 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. [all …]
|
A D | SSL_SESSION_get_compress_id.pod | 6 - get details about the compression associated with a session 16 If compression has been negotiated for an ssl session then 17 SSL_SESSION_get_compress_id() will return the id for the compression method or 18 0 otherwise. The only built-in supported compression method is zlib which has an 23 SSL_SESSION_get_compress_id() returns the id of the compression method or 0 if
|
A D | CMS_compress.pod | 16 is the compression algorithm to use or B<NID_undef> to use the default 17 algorithm (zlib compression). B<in> is the content to be compressed. 20 The only currently supported compression algorithm is zlib using the NID 52 Additional compression parameters such as the zlib compression level cannot
|
A D | CMS_uncompress.pod | 24 The only currently supported compression algorithm is zlib: if the structure
|
A D | SSL_CTX_set_client_hello_cb.pod | 47 the null compression method, since the SSLv2 format does not include a 48 mechanism by which to negotiate compression.
|
A D | SSL_CONF_cmd.pod | 40 Disables support for SSL/TLS compression, same as setting 42 As of OpenSSL 1.1.0, compression is off by default. 46 Enables support for SSL/TLS compression, same as clearing 49 As of OpenSSL 1.1.0, compression is off by default. 463 B<Compression>: SSL/TLS compression support, enabled by default. Inverse 701 Enable compression:
|
A D | OPENSSL_malloc.pod | 106 If the storage controller uses write compression, then it's possible
|
A D | SSL_CTX_set_options.pod | 219 Do not use compression even if it is supported. This option is set by default.
|
/openssl-master/test/helpers/ |
A D | handshake.h | 47 int compression; member
|
A D | handshake.c | 1625 ret->compression = (SSL_get_current_compression(client.ssl) == NULL) in do_handshake_internal()
|
/openssl-master/crypto/err/ |
A D | openssl.txt | 550 EC_R_INVALID_COMPRESSION_BIT:109:invalid compression bit 1288 SSL_R_COMPRESSION_DISABLED:343:compression disabled 1289 SSL_R_COMPRESSION_FAILURE:141:compression failure 1291 compression id not within private range 1292 SSL_R_COMPRESSION_LIBRARY_ERROR:142:compression library error 1320 SSL_R_DUPLICATE_COMPRESSION_ID:309:duplicate compression id 1338 SSL_R_ILLEGAL_POINT_COMPRESSION:162:illegal point compression 1341 SSL_R_INCONSISTENT_COMPRESSION:340:inconsistent compression 1397 SSL_R_NO_COMPRESSION_SPECIFIED:187:no compression specified 1422 old session compression algorithm not returned [all …]
|
/openssl-master/ssl/statem/ |
A D | statem_clnt.c | 1380 unsigned int compression; in tls_process_server_hello() local 1428 if (!PACKET_get_1(pkt, &compression)) { in tls_process_server_hello() 1458 if (compression != 0) { in tls_process_server_hello() 1614 if (compression != 0) { in tls_process_server_hello() 1628 if (s->hit && compression != s->session->compress_meth) { in tls_process_server_hello() 1633 if (compression == 0) in tls_process_server_hello() 1639 comp = ssl3_comp_find(s->ctx->comp_methods, compression); in tls_process_server_hello() 1642 if (compression != 0 && comp == NULL) { in tls_process_server_hello()
|
A D | statem_srvr.c | 1378 PACKET session_id, compression, extensions, cookie; in tls_process_client_hello() local 1497 || !PACKET_buf_init(&compression, &null_compression, 1)) { in tls_process_client_hello() 1543 if (!PACKET_get_length_prefixed_1(pkt, &compression)) { in tls_process_client_hello() 1560 if (!PACKET_copy_all(&compression, clienthello->compressions, in tls_process_client_hello()
|
/openssl-master/test/ |
A D | ssl_test.c | 164 if (!TEST_int_eq(result->compression, test_ctx->compression_expected)) in check_compression()
|
/openssl-master/doc/man1/ |
A D | openssl-s_server.pod.in | 604 Disable negotiation of TLS compression. 605 TLS compression is not recommended and is off by default as of 610 Enable negotiation of TLS compression. 612 TLS compression is not recommended and is off by default as of
|
A D | openssl-s_client.pod.in | 594 Enables support for SSL/TLS compression. 596 TLS compression is not recommended and is off by default as of 601 Disables support for SSL/TLS compression. 602 TLS compression is not recommended and is off by default as of
|
/openssl-master/ |
A D | NEWS.md | 939 * Zlib compression usage fixes. 968 * Changed the ZLIB compression method to be stateful. 1357 * Extended support for compression inside the SSL record layer 1371 * Initial support for compression inside the SSL record layer
|
A D | INSTALL.md | 617 Don't build support for SSL/TLS compression. 619 If this option is enabled (the default), then compression will only work if 935 Build with support for zlib compression/decompression.
|
A D | CHANGES.md | 37 default but are now no longer allowed. By default TLS compression was 3532 using the SSL_CONF library to configure compression. 9255 restarting) then use compression (e.g. SSL with compression) later. 10726 * Change the ZLIB compression method to be stateful, and make it 10728 draft-ietf-tls-compression-04.txt. 10877 Point compression for binary fields is disabled by default for 11494 extra data after the compression methods not only for TLS 1.0 12472 * Add configuration choices to get zlib compression for TLS. 13482 * Have the zlib compression code load ZLIB.DLL dynamically under 13774 extra data after the compression methods not only for TLS 1.0 [all …]
|
/openssl-master/crypto/objects/ |
A D | objects.txt | 926 !Cname zlib-compression 927 id-smime-alg 8 : ZLIB : zlib compression
|
/openssl-master/include/openssl/ |
A D | ssl.h.in | 363 /* Don't use compression even if supported */ 2387 /* Use to see if compression is allowed */
|
Completed in 62 milliseconds