/
githubmirror
/
libseccomp
Обзор
Документация
Войти
/
githubmirror
/
libseccomp
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.4.2
src/hash.h
15 строк
209 B
Paul Moore
all: convert our hash from Lookup3 to MurmurHash3
23 фев 2017, 23:24
23 фев 2017, 23:24
27d43de
Код
Авторство
О чём код?
/** * Seccomp Library hash code * * See hash.c for information on the implementation. * */ #ifndef _HASH_H #define _HASH_H #include <inttypes.h> uint32_t hash(const void *key, size_t length); #endif