#include <checksum.hpp>
Inheritance diagram for Checksum:
Public Member Functions | |
virtual wxString | getValue (const bool hexInUpperCase=false) const =0 |
Returns the checksum value in a string. | |
virtual void | reset ()=0 |
Resets the checksum to initial value. | |
virtual void | update (const wxByte *buf, unsigned int len)=0 |
Updates the checksum with specified array of bytes. |
Using this class in very simple:<BR> Use the update method to provide to the class the bytes for computing the checksum.
The checksum value can be gotten by the getValue method which puts the checksum value in a string.
The checksum computing can be reseted by the reset method.
Definition at line 56 of file checksum.hpp.
|
Returns the checksum value in a string.
|
|
Resets the checksum to initial value.
|
|
Updates the checksum with specified array of bytes.
|