hmac_sha1.h 393 B

1234567891011
  1. #pragma once
  2. #include <stddef.h>
  3. #define HMAC_SHA1_RESULT_SIZE 20
  4. /* Compute Hashed Message Authentication Code with SHA-1, over BUFFER
  5. data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the
  6. output to pre-allocated 20 byte minimum RESBUF buffer. Return 0 on
  7. success. */
  8. int hmac_sha1(const void* key, size_t keylen, const void* in, size_t inlen, void* restrict resbuf);