hmac-sha512.h 459 B

1234567891011121314
  1. #ifndef HMAC_SHA512_H
  2. #define HMAC_SHA512_H
  3. #include <stddef.h>
  4. #define HMAC_SHA512_RESULT_SIZE 64
  5. /* Compute Hashed Message Authentication Code with SHA-512, over BUFFER
  6. data of BUFLEN bytes using the KEY of KEYLEN bytes, writing the
  7. output to pre-allocated 64 byte minimum RESBUF buffer. Return 0 on
  8. success. */
  9. int hmac_sha512 (const void *key, size_t keylen, const void *in, size_t inlen, void *restrict resbuf);
  10. #endif /* HMAC_SHA512_H */