aboutsummaryrefslogtreecommitdiff
path: root/inc/hash.h
blob: 96a30dda1afe0007340ba6fcba1e798adeb86e99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#ifndef BLOC_HASH_H
#define BLOC_HASH_H

#include <stdint.h>
#include <stddef.h>

typedef uint32_t hash_t;

hash_t hash(const uint8_t *key, size_t len, uint32_t seed);

#endif