Maven module :un.storage : archive-xz :
Class : un.storage.archive.xz.XZ
Extends/Implements : -
Subclasses : -

XZ constants.


Variables : HEADER_MAGIC, FOOTER_MAGIC, CHECK_NONE, CHECK_CRC32, CHECK_CRC64, CHECK_SHA256
Functions : -



XZ Header Magic Bytes begin a XZ file.
This can be useful to detect XZ compressed data.
public byte[] HEADER_MAGIC


XZ Footer Magic Bytes are the last bytes of a XZ Stream.
public byte[] FOOTER_MAGIC


Integrity check ID indicating that no integrity check is calculated.


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 int CHECK_NONE


Integrity check ID for CRC32.
public int CHECK_CRC32


Integrity check ID for CRC64.
public int CHECK_CRC64


Integrity check ID for SHA-256.
public int CHECK_SHA256