Systemd/src/basic/siphash24.h
Kay Sievers a095315b3c build-sys: split internal basic/ library from shared/
basic/      can be used by everything
            cannot use anything outside of basic/

libsystemd/ can use basic/
            cannot use shared/

shared/     can use libsystemd/
2015-06-11 10:52:46 +02:00

7 lines
143 B
C

#pragma once
#include <inttypes.h>
#include <sys/types.h>
void siphash24(uint8_t out[8], const void *in, size_t inlen, const uint8_t k[16]);