Method | Description | |
---|---|---|
CRC32 ( ) : System |
Creates an instance of the CRC32 class
|
|
CRC32 ( |
Creates an instance of the CRC32 class, the pointer points to the spot where the data is accumulated
|
|
Final ( ) : long |
Finalizes the CRC32 algorithm and returns a value
|
|
Process ( |
Processes a memory segment
|
|
Process ( char ch ) : void |
Processes a character
|
|
Process ( int i ) : void |
Process an Integer
|
|
Process ( long l ) : void |
Process a long
|
|
Process ( string str ) : void |
public CRC32 ( |
||
ptr |
/// A pointer to an accumulation spot |
|
return | System |
public Process ( |
||
ptr |
/// A pointer to the memory chunk |
|
size | int |
/// the size of the memory |
return | void |
public Process ( char ch ) : void | ||
ch | char |
/// A character to process |
return | void |
public Process ( int i ) : void | ||
i | int |
/// An integer to process |
return | void |