12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef HEADER_HMAC_SHA256_H
- #define HEADER_HMAC_SHA256_H
- #include "sha2.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define HMAC_SHA256_DIGEST_LENGTH 32
- #define HMAC_SHA256_BLOCK_LENGTH 64
- typedef struct _HMAC_SHA256_CTX {
- unsigned char ipad[HMAC_SHA256_BLOCK_LENGTH];
- unsigned char opad[HMAC_SHA256_BLOCK_LENGTH];
- SHA256_CTX shactx;
- unsigned char key[HMAC_SHA256_BLOCK_LENGTH];
- unsigned int keylen;
- unsigned int hashkey;
- } HMAC_SHA256_CTX;
- #ifndef NOPROTO
- void HMAC_SHA256_Init(HMAC_SHA256_CTX *ctx);
- void HMAC_SHA256_UpdateKey(HMAC_SHA256_CTX *ctx, unsigned char *key, unsigned int keylen);
- void HMAC_SHA256_EndKey(HMAC_SHA256_CTX *ctx);
- void HMAC_SHA256_StartMessage(HMAC_SHA256_CTX *ctx);
- void HMAC_SHA256_UpdateMessage(HMAC_SHA256_CTX *ctx, unsigned char *data, unsigned int datalen);
- void HMAC_SHA256_EndMessage(unsigned char *out, HMAC_SHA256_CTX *ctx);
- void HMAC_SHA256_Done(HMAC_SHA256_CTX *ctx);
- #else
- void HMAC_SHA256_Init();
- void HMAC_SHA256_UpdateKey();
- void HMAC_SHA256_EndKey();
- void HMAC_SHA256_StartMessage();
- void HMAC_SHA256_UpdateMessage();
- void HMAC_SHA256_EndMessage();
- void HMAC_SHA256_Done();
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|