pub fn hash(bytes: []const u8) u32
pub fn hash(bytes: []const u8) u32 { var c = init(); c.update(bytes); return c.final(); }