Nugget
|
#include <stdint.h>
Go to the source code of this file.
Namespaces | |
namespace | psyqo |
Functions | |
uint32_t | psyqo::adler32 (uint8_t *buffer, unsigned length, uint32_t sum=1) |
Computes the adler32 checksum of a buffer. | |
uint32_t | psyqo::adler32_bytes (uint8_t *buffer, unsigned length, uint32_t sum=1) |
Computes the adler32 checksum of a buffer, only reading bytes. | |
uint32_t | psyqo::adler32_words (uint32_t *buffer, unsigned length, uint32_t sum=1) |
Computes the adler32 checksum of a buffer, optimized for words. | |