The adler32 class is used to represent the running value of a 32-bit Adler checksum of series of bytes. More...
#include <adler32.h>
Public Member Functions | |
| virtual | ~adler32 () |
| The destructor. | |
| adler32 () | |
| The default constructor. | |
| adler32 (const adler32 &) | |
| The copy constructor. | |
| adler32 & | operator= (const adler32 &) |
| The assignment operator. | |
| unsigned long | get () const |
| The get method is used to obtain the running value of the checksum. | |
| void | next (unsigned char) |
| The next method is used to advance the state by one byte. | |
| void | nextbuf (const void *, size_t) |
| The nextbuf method is used to advance the state by a series of bytes. | |
The adler32 class is used to represent the running value of a 32-bit Adler checksum of series of bytes.
See wikipedia for a description http://en.wikipedia.org/wiki/Adler-32
|
virtual |
The destructor.
| srecord::adler32::adler32 | ( | ) |
The default constructor.
Referenced by adler32(), and operator=().
The assignment operator.
References adler32().
| unsigned long srecord::adler32::get | ( | ) | const |
The get method is used to obtain the running value of the checksum.
| void srecord::adler32::next | ( | unsigned char | ) |
The next method is used to advance the state by one byte.
| void srecord::adler32::nextbuf | ( | const void * | , |
| size_t | ) |
The nextbuf method is used to advance the state by a series of bytes.