pub const TINFL_FLAG_IGNORE_ADLER32: u32 = 64;
Expand description

Ignore adler32 checksum even if we are inflating a zlib stream.

Overrides TINFL_FLAG_COMPUTE_ADLER32 if both are enabled.

NOTE: This flag does not exist in miniz as it does not support this and is a custom addition for miniz_oxide.

NOTE: Should not be changed from enabled to disabled after decompression has started, this will result in checksum failure (outside the unlikely event where the checksum happens to match anyway).