]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/hmac.h
mkosi: update arch commit reference
[thirdparty/systemd.git] / src / basic / hmac.h
CommitLineData
8d39bff4
LB
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2#pragma once
3
4#include <stdint.h>
5#include <stdlib.h>
6
e560cf4f 7#include "sha256.h"
8d39bff4
LB
8
9/* Unoptimized implementation based on FIPS 198. 'res' has to be allocated by
10 * the caller. Prefer external OpenSSL functions, and use this only when
ba669952 11 * linking to OpenSSL is not desirable (eg: libsystemd.so). */
8d39bff4 12void hmac_sha256(const void *key, size_t key_size, const void *input, size_t input_size, uint8_t res[static SHA256_DIGEST_SIZE]);