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