|
|
| static cl_ubyte32 | crc32 (const void *data, int size, cl_ubyte32 running_crc=0) |
| | Calculate a CRC32 checksum on the data. More...
|
| |
| static cl_ubyte32 | adler32 (const void *data, int size, cl_ubyte32 running_adler32=0) |
| | Calculate a CRC32 checksum on the data. More...
|
| |
| static CL_String8 | sha1 (const void *data, int size, bool uppercase=false) |
| | Generate SHA-1 hash from data. More...
|
| |
| static CL_String8 | sha1 (const CL_StringRef8 &data, bool uppercase=false) |
| | Sha1. More...
|
| |
| static CL_String8 | sha1 (const CL_DataBuffer &data, bool uppercase=false) |
| | Sha1. More...
|
| |
| static void | sha1 (const void *data, int size, unsigned char out_hash[20]) |
| | Sha1. More...
|
| |
| static void | sha1 (const CL_StringRef8 &data, unsigned char out_hash[20]) |
| | Sha1. More...
|
| |
| static void | sha1 (const CL_DataBuffer &data, unsigned char out_hash[20]) |
| | Sha1. More...
|
| |
A Collection of checksum functions.