Commit 344ce9e6 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

secur32: Add include guard to hmac_md5.h.

parent 85af727f
...@@ -18,6 +18,9 @@ ...@@ -18,6 +18,9 @@
* This file holds the declarations needed for HMAC-MD5. * This file holds the declarations needed for HMAC-MD5.
*/ */
#ifndef _HMAC_MD5_H_
#define _HMAC_MD5_H_
#include <string.h> #include <string.h>
typedef struct typedef struct
...@@ -41,3 +44,4 @@ void MD5Final( MD5_CTX *ctx ); ...@@ -41,3 +44,4 @@ void MD5Final( MD5_CTX *ctx );
void HMACMD5Init(HMAC_MD5_CTX *ctx, unsigned char *key, unsigned int key_len); void HMACMD5Init(HMAC_MD5_CTX *ctx, unsigned char *key, unsigned int key_len);
void HMACMD5Update(HMAC_MD5_CTX *ctx, unsigned char *data, unsigned int data_len); void HMACMD5Update(HMAC_MD5_CTX *ctx, unsigned char *data, unsigned int data_len);
void HMACMD5Final(HMAC_MD5_CTX *ctx, unsigned char *digest); void HMACMD5Final(HMAC_MD5_CTX *ctx, unsigned char *digest);
#endif /*_HMAC_MD5_H_*/
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment