public class XZ extends Object
Modifier and Type | Field | Description |
---|---|---|
static int |
CHECK_CRC32 |
Integrity check ID for CRC32.
|
static int |
CHECK_CRC64 |
Integrity check ID for CRC64.
|
static int |
CHECK_NONE |
Integrity check ID indicating that no integrity check is calculated.
|
static int |
CHECK_SHA256 |
Integrity check ID for SHA-256.
|
static byte[] |
FOOTER_MAGIC |
XZ Footer Magic Bytes are the last bytes of a XZ Stream.
|
static byte[] |
HEADER_MAGIC |
XZ Header Magic Bytes begin a XZ file.
|
public static final byte[] HEADER_MAGIC
public static final byte[] FOOTER_MAGIC
public static final int CHECK_NONE
Omitting the integrity check is strongly discouraged except when the integrity of the data will be verified by other means anyway, and calculating the check twice would be useless.
public static final int CHECK_CRC32
public static final int CHECK_CRC64
public static final int CHECK_SHA256