hash.pxd 785 B

123456789101112131415161718192021222324252627282930
  1. from libc.stdint cimport uint64_t
  2. from lakesuperior.store.ldp_rs.term cimport Buffer
  3. DEF _SEED_LEN = 8 # sizeof(uint64_t)
  4. DEF _HLEN = _SEED_LEN * 2
  5. # Seed for computing the term hash.
  6. #
  7. # This is a 16-byte string that will be split up into two ``uint64``
  8. # numbers to make up the ``spookyhash_128`` seeds.
  9. DEF _TERM_HASH_SEED = b'\xff\xf2Q\xf2j\x0bG\xc1\x8a}\xca\x92\x98^y\x12'
  10. cdef enum:
  11. SEED_LEN = _SEED_LEN
  12. HLEN = _HLEN
  13. ctypedef uint64_t Hash64
  14. ctypedef uint64_t DoubleHash64[2]
  15. ctypedef unsigned char Hash128[_HLEN]
  16. cdef:
  17. uint64_t term_hash_seed1, term_hash_seed2
  18. unsigned char TERM_HASH_SEED[16]
  19. int hash128(const Buffer *message, Hash128 *hash) except -1
  20. int hash64(const Buffer *message, Hash64 *hash) except -1
  21. TERM_HASH_SEED = _TERM_HASH_SEED