hash_mixΒΆ

namespace eos
class hash_mix
#include <hash_mix.h>

This is a helper class for incrementally-computed implementation of Bob Jenkins’ one-at-a-time hash, in C++. It’s needed in hash function.

Public Static Functions

uint32_t mix(uint8_t * key, int len, uint32_t seed)
uint32_t final_mix(uint32_t seed)

Previous topic

hardware_table

Next topic

intf