Searched defs:SipHasher13 (Results 1 – 2 of 2) sorted by relevance
29 pub struct SipHasher13 { struct30 k0: u64,31 k1: u64,32 length: usize, // how many bytes we've processed33 state: State, // hash State34 tail: u64, // unprocessed bytes le35 ntail: usize, // how many bytes in tail are valid115 impl SipHasher13 { impl124 pub fn new_with_keys(key0: u64, key1: u64) -> SipHasher13 { in new_with_keys()195 impl Hasher for SipHasher13 { implementation
19 public class SipHasher13 { class