- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for LZNT1 (0.01 sec)
-
src/main/java/jcifs/smb/compression/DefaultCompressionService.java
/** * Default implementation of SMB3 compression service. * * Provides compression using Java's built-in deflate algorithm as a base * for LZ77-based compression. For production use, more specialized * implementations of LZNT1 and Pattern_V1 algorithms would be needed. */ public class DefaultCompressionService implements CompressionService { private static final Logger log = LoggerFactory.getLogger(DefaultCompressionService.class);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
/** LZ77 compression */ public static final int COMPRESSION_LZ77 = 0x1; /** LZ77 + Huffman compression */ public static final int COMPRESSION_LZ77_HUFFMAN = 0x2; /** LZNT1 compression (Windows standard) */ public static final int COMPRESSION_LZNT1 = 0x3; /** Pattern V1 compression */ public static final int COMPRESSION_PATTERN_V1 = 0x4; private int[] compressionAlgorithms;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0)