C# 클래스 ICSharpCode.SharpZipLib.Checksums.StrangeCRC

Bzip2 checksum algorithm
상속: IChecksum
파일 보기 프로젝트 열기: fanfeilong/exceltk

공개 메소드들

메소드 설명
Reset ( ) : void

Reset the state of Crc.

StrangeCRC ( ) : System

Initialise a default instance of

Update ( byte buffer ) : void

Update Crc based on a block of data

Update ( byte buffer, int offset, int count ) : void

Update Crc based on a portion of a block of data

Update ( int value ) : void

Update the Crc value.

메소드 상세

Reset() 공개 메소드

Reset the state of Crc.
public Reset ( ) : void
리턴 void

StrangeCRC() 공개 메소드

Initialise a default instance of
public StrangeCRC ( ) : System
리턴 System

Update() 공개 메소드

Update Crc based on a block of data
public Update ( byte buffer ) : void
buffer byte The buffer containing data to update the crc with.
리턴 void

Update() 공개 메소드

Update Crc based on a portion of a block of data
public Update ( byte buffer, int offset, int count ) : void
buffer byte block of data
offset int index of first byte to use
count int number of bytes to use
리턴 void

Update() 공개 메소드

Update the Crc value.
public Update ( int value ) : void
value int data update is based on
리턴 void