C# Class PocketCampus.Main.PngWriter.CRC32

Computes the CRC32 value for a given data set
Datei anzeigen Open project: accandme/pocketcampus

Public Methods

Method Description
Add ( byte buf, int len ) : void

Adds to the current running CRC32 the bytes from buf[].

Add ( byte buf, int len, uint offset ) : void

Adds to the current running CRC32 the bytes from buf[].

Method Details

Add() public method

Adds to the current running CRC32 the bytes from buf[].
public Add ( byte buf, int len ) : void
buf byte A byte[] to process.
len int The length of the byte[].
return void

Add() public method

Adds to the current running CRC32 the bytes from buf[].
public Add ( byte buf, int len, uint offset ) : void
buf byte A byte[] to process.
len int The length of the byte[].
offset uint The offset to start processing byte[] at.
return void