C# 클래스 BB.Caching.Hashing.Murmur3

Helper functions when using murmur hash.
파일 보기 프로젝트 열기: JesseBuesking/BB.Caching

공개 메소드들

메소드 설명
ComputeHash ( byte value ) : byte[]

Computes a byte array representing the murmur hash generated from a byte array.

ComputeHash ( string value ) : byte[]

Computes a byte array representing the murmur hash generated from a string.

ComputeInt ( byte value ) : uint

Computes a uint representing the murmur hash generated from a byte array.

ComputeInt ( string value ) : uint

Computes a uint representing the murmur hash generated from a string.

메소드 상세

ComputeHash() 공개 정적인 메소드

Computes a byte array representing the murmur hash generated from a byte array.
public static ComputeHash ( byte value ) : byte[]
value byte /// The value. ///
리턴 byte[]

ComputeHash() 공개 정적인 메소드

Computes a byte array representing the murmur hash generated from a string.
public static ComputeHash ( string value ) : byte[]
value string /// The value. ///
리턴 byte[]

ComputeInt() 공개 정적인 메소드

Computes a uint representing the murmur hash generated from a byte array.
public static ComputeInt ( byte value ) : uint
value byte /// The value. ///
리턴 uint

ComputeInt() 공개 정적인 메소드

Computes a uint representing the murmur hash generated from a string.
public static ComputeInt ( string value ) : uint
value string /// The value. ///
리턴 uint