BB.Caching.Hashing.Murmur3.ComputeHash C# (CSharp) Method

ComputeHash() public static method

Computes a byte array representing the murmur hash generated from a byte array.
public static ComputeHash ( byte value ) : byte[]
value byte /// The value. ///
return byte[]
            public static byte[] ComputeHash(byte[] value)
            {
                byte[] res = Hashing.Core.Instance.MurmurHash.ComputeHash(value);
                return res;
            }
        }

Same methods

Hashing.Murmur3::ComputeHash ( string value ) : byte[]