Lines Matching full:check
4 * \file lzma/check.h
19 * \brief Type of the integrity check (Check ID)
28 * No Check is calculated.
30 * Size of the Check field: 0 bytes
37 * Size of the Check field: 4 bytes
44 * Size of the Check field: 8 bytes
51 * Size of the Check field: 32 bytes
57 * \brief Maximum valid Check ID
59 * The .xz file format specification specifies 16 Check IDs (0-15). Some
60 * of them are only reserved, that is, no actual Check algorithm has been
61 * assigned. When decoding, liblzma still accepts unknown Check IDs for
62 * future compatibility. If a valid but unsupported Check ID is detected,
70 * \brief Test if the given Check ID is supported
78 * \param check Check ID
81 * - true if Check ID is supported by this liblzma build.
84 extern LZMA_API(lzma_bool) lzma_check_is_supported(lzma_check check)
89 * \brief Get the size of the Check field with the given Check ID
91 * Although not all Check IDs have a check algorithm associated, the size of
92 * every Check is already frozen. This function returns the size (in bytes) of
93 * the Check field with the specified Check ID. The values are:
96 * \param check Check ID
98 * \return Size of the Check field in bytes. If the argument is not in
101 extern LZMA_API(uint32_t) lzma_check_size(lzma_check check)
106 * \brief Maximum size of a Check field
152 * \brief Get the type of the integrity check
160 * \return Check ID in the lzma_stream, or undefined if called improperly.