mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
8520daf28b
and running fbt format, and fixing TOTP printf format
11 lines
393 B
C
11 lines
393 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#define HMAC_SHA1_RESULT_SIZE 20
|
|
|
|
/* Compute Hashed Message Authentication Code with SHA-1, over BUFFER
|
|
data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the
|
|
output to pre-allocated 20 byte minimum RESBUF buffer. Return 0 on
|
|
success. */
|
|
int hmac_sha1(const void* key, size_t keylen, const void* in, size_t inlen, void* restrict resbuf);
|