pub fn city_hash_crc_256(bytes: &[u8]) -> [u64; 4]
Expand description

Retrieves a 256-bit hash fo a slice of bytes. The hash is a slice of u64 where [0..4] is [low..high] bits.

Example

use cityhash_sys::city_hash_crc_256;

assert_eq!(city_hash_crc_256(&[0u8,1,2,3,4]), [0xA7FAC4B64C35C8B4,0xDD83C2CDF35398F6,0xEAF64F6BA6A2C9E8,0x4E72CE1685CE9077]);