/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 32-compressed-certificate.cnf | 5 test-0 = 0-no-compressed-certificates 6 test-1 = 1-server-compressed-certificates 7 test-2 = 2-client-compressed-certificates 8 test-3 = 3-both-compressed-certificates 9 test-4 = 4-no-compressed-certificates-mtls 10 test-5 = 5-server-compressed-certificates-mtls 11 test-6 = 6-client-compressed-certificates-mtls 12 test-7 = 7-both-compressed-certificates-mtls 15 [0-no-compressed-certificates] 16 ssl_conf = 0-no-compressed-certificates-ssl [all …]
|
H A D | 32-compressed-certificate.cnf.in | 20 name => "no-compressed-certificates", 34 name => "server-compressed-certificates", 48 name => "client-compressed-certificates", 62 name => "both-compressed-certificates", 76 name => "no-compressed-certificates-mtls", 94 name => "server-compressed-certificates-mtls", 112 name => "client-compressed-certificates-mtls", 130 name => "both-compressed-certificates-mtls",
|
/freebsd/crypto/openssl/demos/cms/ |
H A D | comp.txt | 3 Some Text To be Compressed 4 Some Text To be Compressed 5 Some Text To be Compressed 6 Some Text To be Compressed 7 Some Text To be Compressed 8 Some Text To be Compressed 9 Some Text To be Compressed 10 Some Text To be Compressed 11 Some Text To be Compressed 12 Some Text To be Compressed [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | compress | 7 # Formats for various forms of compressed data 16 >2 byte&0x80 >0 block compressed 36 # to display gzip compressed (strength=100=2*50) before other (strength=50)? 61 >>10 default x gzip compressed data 68 #!:mime application/x-compressed-tar 71 #!:mime image/svg+xml-compressed 84 >3 byte&0x18 >0 gzip compressed data 87 #!:mime application/x-compressed-tar 88 #!:mime application/x-abiword-compressed 89 #!:mime image/image/svg+xml-compressed [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_CTX_set1_cert_comp_preference.pod | 68 B<alg> is 0, then the certificates are compressed with the algorithms specified 70 will result in an error, as only server certificates may be pre-compressed. 73 the pre-compressed certificate most recently set that may be stored for later 75 error, as only server certificates may be pre-compressed. The B<data> and 78 The compressed certificate data may be passed to SSL_CTX_set1_compressed_cert() 79 or SSL_set1_compressed_cert() to provide a pre-compressed version of the 80 most recently set certificate. This pre-compressed certificate can only be used 86 to their peer indicating compressed certificate support. The received preference 91 compressed certificate. 93 Only server certificates may be pre-compressed. Calling any of these functions [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | SSL_CTX_set1_cert_comp_preference.3 | 122 \&\fBalg\fR is 0, then the certificates are compressed with the algorithms specified 124 will result in an error, as only server certificates may be pre-compressed. 127 the pre-compressed certificate most recently set that may be stored for later 129 error, as only server certificates may be pre-compressed. The \fBdata\fR and 132 The compressed certificate data may be passed to \fBSSL_CTX_set1_compressed_cert()\fR 133 or \fBSSL_set1_compressed_cert()\fR to provide a pre-compressed version of the 134 most recently set certificate. This pre-compressed certificate can only be used 139 to their peer indicating compressed certificate support. The received preference 144 compressed certificate. 146 Only server certificates may be pre-compressed. Calling any of these functions [all …]
|
/freebsd/sys/contrib/zlib/doc/ |
H A D | rfc1951.txt | 12 DEFLATE Compressed Data Format Specification version 1.3 42 This specification defines a lossless compressed data format that 60 RFC 1951 DEFLATE Compressed Data Format Specification May 1996 72 2. Compressed representation overview ............................. 4 76 3.2. Compressed block format ................................... 6 80 3.2.4. Non-compressed blocks (BTYPE=00) ................... 11 81 3.2.5. Compressed blocks (length and distance codes) ...... 11 97 compressed data format that: 116 RFC 1951 DEFLATE Compressed Data Format Specification May 1996 126 * Allow random access to compressed data; [all …]
|
H A D | rfc1950.txt | 14 ZLIB Compressed Data Format Specification version 3.3 44 This specification defines a lossless compressed data format. The 60 RFC 1950 ZLIB Compressed Data Format Specification May 1996 89 compressed data format that: 106 allow random access to compressed data. 116 RFC 1950 ZLIB Compressed Data Format Specification May 1996 131 The specification specifies a compressed data format that can be 172 RFC 1950 ZLIB Compressed Data Format Specification May 1996 228 RFC 1950 ZLIB Compressed Data Format Specification May 1996 239 |...compressed data...| ADLER32 | [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_add_filter_gzip.c | 65 unsigned char *compressed; member 142 free(data->compressed); in archive_compressor_gzip_free() 196 if (data->compressed == NULL) { in archive_compressor_gzip_open() 208 data->compressed = malloc(data->compressed_buffer_size); in archive_compressor_gzip_open() 209 if (data->compressed == NULL) { in archive_compressor_gzip_open() 217 data->stream.next_out = data->compressed; in archive_compressor_gzip_open() 221 data->compressed[0] = 0x1f; /* GZip signature bytes */ in archive_compressor_gzip_open() 222 data->compressed[1] = 0x8b; in archive_compressor_gzip_open() 223 data->compressed[2] = 0x08; /* "Deflate" compression */ in archive_compressor_gzip_open() 224 data->compressed[3] = data->original_filename == NULL ? 0 : 0x8; in archive_compressor_gzip_open() [all …]
|
H A D | archive_write_add_filter_lzop.c | 64 unsigned char *compressed; 88 * compressed size(4 bytes) and the checksum of uncompressed data(4 bytes) 197 free(data->compressed); in archive_write_lzop_free() 260 if (data->compressed == NULL) { in archive_write_lzop_open() 263 data->compressed = (unsigned char *) in archive_write_lzop_open() 265 if (data->compressed == NULL) { in archive_write_lzop_open() 292 memcpy(data->compressed, header, sizeof(header)); in make_header() 294 data->compressed[HEADER_LIBVERSION] = (unsigned char ) in make_header() 296 data->compressed[HEADER_LIBVERSION + 1] = (unsigned char ) in make_header() 299 data->compressed[HEADER_METHO in make_header() 65 unsigned char *compressed; global() member [all...] |
H A D | archive_write_add_filter_xz.c | 106 unsigned char *compressed; member 229 data->stream.next_out = data->compressed; in archive_compressor_xz_init_stream() 272 data->compressed[0] = 0x4C; in archive_compressor_xz_init_stream() 273 data->compressed[1] = 0x5A; in archive_compressor_xz_init_stream() 274 data->compressed[2] = 0x49; in archive_compressor_xz_init_stream() 275 data->compressed[3] = 0x50; in archive_compressor_xz_init_stream() 276 data->compressed[4] = 1;/* Version */ in archive_compressor_xz_init_stream() 277 data->compressed[5] = (unsigned char)ds; in archive_compressor_xz_init_stream() 310 if (data->compressed == NULL) { in archive_compressor_xz_open() 322 data->compressed = malloc(data->compressed_buffer_size); in archive_compressor_xz_open() [all …]
|
/freebsd/contrib/libarchive/libarchive/test/ |
H A D | test_compat_lz4.c | 39 * compressed in different ways. 90 /* This sample has been 'split', each piece compressed separately, in DEFINE_TEST() 94 /* This sample has been compressed as a single stream, but then in DEFINE_TEST() 97 /* This sample has been compressed as a legacy stream. */ in DEFINE_TEST() 99 /* This sample has been compressed with -B4 option. */ in DEFINE_TEST() 101 /* This sample has been compressed with -B5 option. */ in DEFINE_TEST() 103 /* This sample has been compressed with -B6 option. */ in DEFINE_TEST() 105 /* This sample has been compressed with -B7 option. */ in DEFINE_TEST() 107 /* This sample has been compressed with -B4 and -BD options. */ in DEFINE_TEST() 109 /* This sample has been compressed wit in DEFINE_TEST() [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVMakeCompressible.cpp | 9 // This pass searches for instructions that are prevented from being compressed 13 // 2. A base register + offset where the offset is too large to be compressed 14 // and the base register may or may not be compressed. 17 // For case 1, if a compressed register is available, then the uncompressed 18 // register is copied to the compressed register and its uses are replaced. 26 // If a compressed register (e.g. a1) is available, the above can be transformed 35 // For case 2, if a compressed register is available, then the original base 50 // If a compressed register is available (e.g. a3), a new base could be created 146 // Return a mask for the offset bits of a non-stack-pointer based compressed 152 // Return true if Offset fits within a compressed stack-pointer based [all …]
|
/freebsd/contrib/bzip2/ |
H A D | bzip2.1 | 48 command-line flags. Each file is replaced by a compressed version of 50 Each compressed file 71 write compressed output to a terminal, as this would be entirely 83 from that of the compressed file as follows: 110 concatenation of two or more compressed files. The result is the 114 compressed files is also supported. 117 giving the \-c flag. Multiple files may be compressed and 121 containing multiple compressed file representations. Such a stream 145 Compression is always performed, even if the compressed 158 original. This guards against corruption of the compressed data, and [all …]
|
/freebsd/usr.bin/compress/ |
H A D | zopen.3 | 33 .Nd compressed stream open function 42 opens the compressed file whose name is the string pointed to by 51 Open compressed file for reading. 54 Truncate file to zero length or create compressed file for writing. 107 The compressed file starts with an invalid header, or the compressed 108 file is compressed with more bits than can be handled.
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/ |
H A D | redacted_compressed.ksh | 23 # Verify that compressed send streams are redacted correctly. 26 # 1. Receive a redacted compressed send stream, verifying compression and 32 typeset ds_name="compressed" 52 log_must stream_has_features $stream compressed lz4 redacted 61 log_must stream_has_features $stream compressed lz4 68 log_must stream_has_features $stream compressed lz4 72 log_pass "Compressed send streams are redacted correctly."
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | send-c_recv_lz4_disabled.ksh | 24 # Verify a pool without the lz4 feature gracefully rejects a compressed stream 25 # because on any sending pool that supports it, metadata will be compressed 26 # with lz4 even if user data is not compressed. 31 # 2. Attempt to receive the compressed stream (should fail) 37 log_assert "Verify compressed streams are rejected if incompatible." 69 log_pass "Compressed streams are rejected if incompatible."
|
H A D | send-c_verify_ratio.ksh | 36 log_assert "Verify send -c streams are compressed" 60 log_must eval "zfs send -c $sendfs@snap >$BACKDIR/compressed" 61 verify_stream_size $BACKDIR/compressed $sendfs 63 log_must rm $BACKDIR/uncompressed $BACKDIR/compressed 68 log_pass "Verify send -c streams are compressed"
|
H A D | send-c_volume.ksh | 23 # Verify that compressed send correctly handles volumes 27 # 2. Verify the compressed stream is the correct size, and has the correct data 28 # 3. Repeat step 2 for an incremental compressed stream 40 log_assert "Verify compressed send works with volumes" 84 log_pass "Verify compressed send works with volumes"
|
/freebsd/usr.bin/gzip/ |
H A D | gzexe | 25 # A simple string to recognize already compressed files 26 magic="# compressed by gzexe" 55 # Test if a file is compressed by checking the magic line 56 compressed () { 162 if ! compressed "$1"; then 163 echo "$prog: $1 is not compressed" 169 if compressed "$1"; then 170 echo "$prog: $1 is already compressed"
|
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/ |
H A D | xz_dec_lzma2.c | 228 /* Next position after decoding the compressed size of the chunk. */ 235 * Compressed size of LZMA chunk or compressed/uncompressed 238 uint32_t compressed; member 885 if (s->temp.size > 0 || s->lzma2.compressed == 0) { in lzma2_lzma() 887 if (tmp > s->lzma2.compressed - s->temp.size) in lzma2_lzma() 888 tmp = s->lzma2.compressed - s->temp.size; in lzma2_lzma() 894 if (s->temp.size + tmp == s->lzma2.compressed) { in lzma2_lzma() 913 s->lzma2.compressed -= s->rc.in_pos; in lzma2_lzma() 931 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED) in lzma2_lzma() 932 s->rc.in_limit = b->in_pos + s->lzma2.compressed; in lzma2_lzma() [all …]
|
H A D | xz_dec_stream.c | 75 * Value stored in the Compressed Size field, or 76 * VLI_UNKNOWN if Compressed Size is not present. 78 vli_type compressed; member 92 /* Observed compressed size of the current Block */ 93 vli_type compressed; member 219 * Decode the Compressed Data field from a Block. Update and validate 220 * the observed compressed and uncompressed sizes of the Block so that 244 s->block.compressed += b->in_pos - s->in_start; in dec_block() 251 if (s->block.compressed > s->block_header.compressed in dec_block() 266 if (s->block_header.compressed != VLI_UNKNOWN in dec_block() [all …]
|
/freebsd/lib/libc/net/ |
H A D | resolver.3 | 313 The size of the compressed name is returned or \-1 if there were errors. 321 to previously-compressed names in the current message. 331 as the name is compressed. 336 names are not compressed. 346 expands the compressed domain name 349 The compressed name is contained in a query or reply message; 356 The size of compressed name is returned or \-1 if there was an error. 360 function skips over a compressed domain name, which starts at a location 363 The compressed name is contained in a query or reply message; 366 The size of compressed name is returned or \-1 if there was
|
/freebsd/sys/dev/qat/qat_api/include/dc/ |
H A D | cpa_dc_chain.h | 50 * 2nd operation is to perform hash on compressed text 57 * 2nd operation is to perform encryption on compressed text 64 * 2nd operation is to perform hash on compressed text and 65 * encryption on compressed text 72 * 2nd operation is to perform encryption on compressed text and 73 * hash on compressed & encrypted text 80 * 2nd operation is to perform AEAD encryption on compressed text 93 * 1st operation is to perform hash verify on compressed text 94 * 2nd operation is to perform decompression on compressed text 100 * 1st operation is to perform decryption on compressed & encrypted text [all …]
|
/freebsd/contrib/xz/src/xz/ |
H A D | xz.1 | 62 raw compressed streams with no container format headers 86 to write compressed data to standard output if it is a terminal. 89 will refuse to read compressed data 376 Test the integrity of compressed 385 Print information about compressed 390 the compressed data from standard 460 for files that have not been compressed with 464 might support new compressed file formats, which may make 475 Write the compressed or decompressed data to 695 Don't verify the integrity check of the compressed data when decompressing. [all …]
|