Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decompressors (0.08 sec)

  1. src/main/java/jcifs/smb/compression/CompressionService.java

         * @return the compressed data
         * @throws CIFSException if compression fails
         */
        byte[] compress(byte[] data, int offset, int length, int algorithm) throws CIFSException;
    
        /**
         * Decompresses data that was compressed with the specified algorithm.
         *
         * @param compressedData the compressed data
         * @param algorithm the compression algorithm that was used
         * @return the decompressed data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/compression/DefaultCompressionService.java

                deflater.end();
                return baos.toByteArray();
            } catch (Exception e) {
                throw new CIFSException("LZ77 compression failed", e);
            }
        }
    
        /**
         * Decompresses LZ77 data.
         */
        private byte[] decompressLZ77(byte[] compressedData, int offset, int length) throws CIFSException {
            try {
                Inflater inflater = new Inflater(false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top