C# Класс BB.Caching.Hashing.Murmur3

Helper functions when using murmur hash.
Показать файл Открыть проект

Открытые методы

Метод Описание
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