123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- #ifndef __HMAC_SHA256_H__
- #define __HMAC_SHA256_H__
- #include "hmac_sha256.h"
- #include <string.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define IPAD_BYTE 0x36
- #define OPAD_BYTE 0x5c
- #define ZERO_BYTE 0x00
- void HMAC_SHA256_Init(HMAC_SHA256_CTX *ctx) {
- memset(&(ctx->key[0]), ZERO_BYTE, HMAC_SHA256_BLOCK_LENGTH);
- memset(&(ctx->ipad[0]), IPAD_BYTE, HMAC_SHA256_BLOCK_LENGTH);
- memset(&(ctx->opad[0]), OPAD_BYTE, HMAC_SHA256_BLOCK_LENGTH);
- ctx->keylen = 0;
- ctx->hashkey = 0;
- }
- void HMAC_SHA256_UpdateKey(HMAC_SHA256_CTX *ctx, unsigned char *key, unsigned int keylen) {
-
- if (keylen < 1)
- return;
-
- if (ctx->hashkey !=0 || (keylen + ctx->keylen) > HMAC_SHA256_BLOCK_LENGTH) {
-
- if (ctx->hashkey == 0) {
-
-
- ctx->hashkey = 1;
-
- SHA256_Init(&ctx->shactx);
-
- if (ctx->keylen > 0) {
- SHA256_Update(&ctx->shactx, &(ctx->key[0]), ctx->keylen);
- }
-
- ctx->keylen = HMAC_SHA256_DIGEST_LENGTH;
- }
-
- SHA256_Update(&ctx->shactx, key, keylen);
- } else {
-
- memcpy(&(ctx->key[ctx->keylen]), key, keylen);
- ctx->keylen += keylen;
- }
- }
- void HMAC_SHA256_EndKey(HMAC_SHA256_CTX *ctx) {
- unsigned char *ipad, *opad, *key;
- int i;
- unsigned int j;
-
- if (ctx->hashkey) {
- memset(&(ctx->key[0]), ZERO_BYTE, HMAC_SHA256_BLOCK_LENGTH);
-
- SHA256_Final(&(ctx->key[0]), &ctx->shactx);
-
- }
-
- if ((i = HMAC_SHA256_BLOCK_LENGTH - ctx->keylen) > 0) {
- memset(&(ctx->key[ctx->keylen]), ZERO_BYTE, i);
- }
- ipad = &(ctx->ipad[0]);
- opad = &(ctx->opad[0]);
-
- key = &(ctx->key[0]);
- for (j = 0; j < ctx->keylen; j++, key++) {
-
- *ipad++ ^= *key;
- *opad++ ^= *key;
- }
- }
- void HMAC_SHA256_StartMessage(HMAC_SHA256_CTX *ctx) {
- SHA256_Init(&ctx->shactx);
- SHA256_Update(&ctx->shactx, &(ctx->ipad[0]), HMAC_SHA256_BLOCK_LENGTH);
- }
- void HMAC_SHA256_UpdateMessage(HMAC_SHA256_CTX *ctx, unsigned char *data, unsigned int datalen) {
- SHA256_Update(&ctx->shactx, data, datalen);
- }
- void HMAC_SHA256_EndMessage(unsigned char *out, HMAC_SHA256_CTX *ctx) {
- unsigned char buf[HMAC_SHA256_DIGEST_LENGTH];
- SHA256_CTX *c = &ctx->shactx;
- SHA256_Final(&(buf[0]), c);
- SHA256_Init(c);
- SHA256_Update(c, &(ctx->opad[0]), HMAC_SHA256_BLOCK_LENGTH);
- SHA256_Update(c, buf, HMAC_SHA256_DIGEST_LENGTH);
- SHA256_Final(out, c);
- }
- void HMAC_SHA256_Done(HMAC_SHA256_CTX *ctx) {
-
- memset(&(ctx->ipad[0]), ZERO_BYTE, HMAC_SHA256_BLOCK_LENGTH);
- memset(&(ctx->ipad[0]), ZERO_BYTE, HMAC_SHA256_BLOCK_LENGTH);
- memset(&(ctx->key[0]), ZERO_BYTE, HMAC_SHA256_BLOCK_LENGTH);
- ctx->keylen = 0;
- ctx->hashkey = 0;
- }
- #ifdef __cplusplus
- }
- #endif
- #endif
|