C# Class Enyim.FNV1a

Implements an FNV1a hash algorithm.
Inheritance: System.Security.Cryptography.HashAlgorithm
显示文件 Open project: xianrendzw/LightFramework.Net Class Usage Examples

Protected Methods

Method Description
HashCore ( byte array, int ibStart, int cbSize ) : void

Routes data written to the object into the T:FNV1a hash algorithm for computing the hash.

Method Details

HashCore() protected method

Routes data written to the object into the T:FNV1a hash algorithm for computing the hash.
protected HashCore ( byte array, int ibStart, int cbSize ) : void
array byte The input data.
ibStart int The offset into the byte array from which to begin using data.
cbSize int The number of bytes in the array to use as data.
return void