mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-16 04:24:45 -07:00
Rename plugins to external
This commit is contained in:
11
applications/external/totp/services/hmac/hmac_sha512.h
vendored
Normal file
11
applications/external/totp/services/hmac/hmac_sha512.h
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#define HMAC_SHA512_RESULT_SIZE 64
|
||||
|
||||
/* Compute Hashed Message Authentication Code with SHA-512, over BUFFER
|
||||
data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the
|
||||
output to pre-allocated 64 byte minimum RESBUF buffer. Return 0 on
|
||||
success. */
|
||||
int hmac_sha512(const void* key, size_t keylen, const void* in, size_t inlen, void* restrict resbuf);
|
||||
Reference in New Issue
Block a user