Contains function for calculating checksum. More...
#include <vxl_config.h>Go to the source code of this file.
Functions | |
| template<class IT > | |
| vxl_uint_32 | vul_checksum_crc32c (IT begin, IT end) |
| Caluclate the recommended CRC32C checksum. More... | |
| template<class IT > | |
| vxl_uint_32 | vul_checksum_crc32 (IT begin, IT end) |
| Caluclate the popular CRC32 checksum as used by SATA, MPEG-2, PKZIP, Gzip, Bzip2. More... | |
Contains function for calculating checksum.
Definition in file vul_checksum.h.
| vxl_uint_32 vul_checksum_crc32 | ( | IT | begin, |
| IT | end | ||
| ) |
Caluclate the popular CRC32 checksum as used by SATA, MPEG-2, PKZIP, Gzip, Bzip2.
| begin,end | The sequence of chars to be checksummed. |
Definition at line 113 of file vul_checksum.h.
| vxl_uint_32 vul_checksum_crc32c | ( | IT | begin, |
| IT | end | ||
| ) |
Caluclate the recommended CRC32C checksum.
As used by iSCSI, Btrfs, ext4.
| begin,end | The sequence of chars to be checksummed. |
Definition at line 107 of file vul_checksum.h.
1.8.15