hmac.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include "internal/cryptlib.h"
  13. #include <openssl/hmac.h>
  14. #include <openssl/opensslconf.h>
  15. #include "hmac_lcl.h"
  16. int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
  17. const EVP_MD *md, ENGINE *impl)
  18. {
  19. int i, j, reset = 0;
  20. unsigned char pad[HMAC_MAX_MD_CBLOCK];
  21. /* If we are changing MD then we must have a key */
  22. if (md != NULL && md != ctx->md && (key == NULL || len < 0))
  23. return 0;
  24. if (md != NULL) {
  25. reset = 1;
  26. ctx->md = md;
  27. } else if (ctx->md) {
  28. md = ctx->md;
  29. } else {
  30. return 0;
  31. }
  32. if (key != NULL) {
  33. reset = 1;
  34. j = EVP_MD_block_size(md);
  35. if (!ossl_assert(j <= (int)sizeof(ctx->key)))
  36. goto err;
  37. if (j < len) {
  38. if (!EVP_DigestInit_ex(ctx->md_ctx, md, impl))
  39. goto err;
  40. if (!EVP_DigestUpdate(ctx->md_ctx, key, len))
  41. goto err;
  42. if (!EVP_DigestFinal_ex(ctx->md_ctx, ctx->key,
  43. &ctx->key_length))
  44. goto err;
  45. } else {
  46. if (len < 0 || len > (int)sizeof(ctx->key))
  47. return 0;
  48. memcpy(ctx->key, key, len);
  49. ctx->key_length = len;
  50. }
  51. if (ctx->key_length != HMAC_MAX_MD_CBLOCK)
  52. memset(&ctx->key[ctx->key_length], 0,
  53. HMAC_MAX_MD_CBLOCK - ctx->key_length);
  54. }
  55. if (reset) {
  56. for (i = 0; i < HMAC_MAX_MD_CBLOCK; i++)
  57. pad[i] = 0x36 ^ ctx->key[i];
  58. if (!EVP_DigestInit_ex(ctx->i_ctx, md, impl))
  59. goto err;
  60. if (!EVP_DigestUpdate(ctx->i_ctx, pad, EVP_MD_block_size(md)))
  61. goto err;
  62. for (i = 0; i < HMAC_MAX_MD_CBLOCK; i++)
  63. pad[i] = 0x5c ^ ctx->key[i];
  64. if (!EVP_DigestInit_ex(ctx->o_ctx, md, impl))
  65. goto err;
  66. if (!EVP_DigestUpdate(ctx->o_ctx, pad, EVP_MD_block_size(md)))
  67. goto err;
  68. }
  69. if (!EVP_MD_CTX_copy_ex(ctx->md_ctx, ctx->i_ctx))
  70. goto err;
  71. return 1;
  72. err:
  73. return 0;
  74. }
  75. #if OPENSSL_API_COMPAT < 0x10100000L
  76. int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md)
  77. {
  78. if (key && md)
  79. HMAC_CTX_reset(ctx);
  80. return HMAC_Init_ex(ctx, key, len, md, NULL);
  81. }
  82. #endif
  83. int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len)
  84. {
  85. if (!ctx->md)
  86. return 0;
  87. return EVP_DigestUpdate(ctx->md_ctx, data, len);
  88. }
  89. int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len)
  90. {
  91. unsigned int i;
  92. unsigned char buf[EVP_MAX_MD_SIZE];
  93. if (!ctx->md)
  94. goto err;
  95. if (!EVP_DigestFinal_ex(ctx->md_ctx, buf, &i))
  96. goto err;
  97. if (!EVP_MD_CTX_copy_ex(ctx->md_ctx, ctx->o_ctx))
  98. goto err;
  99. if (!EVP_DigestUpdate(ctx->md_ctx, buf, i))
  100. goto err;
  101. if (!EVP_DigestFinal_ex(ctx->md_ctx, md, len))
  102. goto err;
  103. return 1;
  104. err:
  105. return 0;
  106. }
  107. size_t HMAC_size(const HMAC_CTX *ctx)
  108. {
  109. int size = EVP_MD_size((ctx)->md);
  110. return (size < 0) ? 0 : size;
  111. }
  112. HMAC_CTX *HMAC_CTX_new(void)
  113. {
  114. HMAC_CTX *ctx = OPENSSL_zalloc(sizeof(HMAC_CTX));
  115. if (ctx != NULL) {
  116. if (!HMAC_CTX_reset(ctx)) {
  117. HMAC_CTX_free(ctx);
  118. return NULL;
  119. }
  120. }
  121. return ctx;
  122. }
  123. static void hmac_ctx_cleanup(HMAC_CTX *ctx)
  124. {
  125. EVP_MD_CTX_reset(ctx->i_ctx);
  126. EVP_MD_CTX_reset(ctx->o_ctx);
  127. EVP_MD_CTX_reset(ctx->md_ctx);
  128. ctx->md = NULL;
  129. ctx->key_length = 0;
  130. OPENSSL_cleanse(ctx->key, sizeof(ctx->key));
  131. }
  132. void HMAC_CTX_free(HMAC_CTX *ctx)
  133. {
  134. if (ctx != NULL) {
  135. hmac_ctx_cleanup(ctx);
  136. EVP_MD_CTX_free(ctx->i_ctx);
  137. EVP_MD_CTX_free(ctx->o_ctx);
  138. EVP_MD_CTX_free(ctx->md_ctx);
  139. OPENSSL_free(ctx);
  140. }
  141. }
  142. static int hmac_ctx_alloc_mds(HMAC_CTX *ctx)
  143. {
  144. if (ctx->i_ctx == NULL)
  145. ctx->i_ctx = EVP_MD_CTX_new();
  146. if (ctx->i_ctx == NULL)
  147. return 0;
  148. if (ctx->o_ctx == NULL)
  149. ctx->o_ctx = EVP_MD_CTX_new();
  150. if (ctx->o_ctx == NULL)
  151. return 0;
  152. if (ctx->md_ctx == NULL)
  153. ctx->md_ctx = EVP_MD_CTX_new();
  154. if (ctx->md_ctx == NULL)
  155. return 0;
  156. return 1;
  157. }
  158. int HMAC_CTX_reset(HMAC_CTX *ctx)
  159. {
  160. hmac_ctx_cleanup(ctx);
  161. if (!hmac_ctx_alloc_mds(ctx)) {
  162. hmac_ctx_cleanup(ctx);
  163. return 0;
  164. }
  165. return 1;
  166. }
  167. int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx)
  168. {
  169. if (!hmac_ctx_alloc_mds(dctx))
  170. goto err;
  171. if (!EVP_MD_CTX_copy_ex(dctx->i_ctx, sctx->i_ctx))
  172. goto err;
  173. if (!EVP_MD_CTX_copy_ex(dctx->o_ctx, sctx->o_ctx))
  174. goto err;
  175. if (!EVP_MD_CTX_copy_ex(dctx->md_ctx, sctx->md_ctx))
  176. goto err;
  177. memcpy(dctx->key, sctx->key, HMAC_MAX_MD_CBLOCK);
  178. dctx->key_length = sctx->key_length;
  179. dctx->md = sctx->md;
  180. return 1;
  181. err:
  182. hmac_ctx_cleanup(dctx);
  183. return 0;
  184. }
  185. unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
  186. const unsigned char *d, size_t n, unsigned char *md,
  187. unsigned int *md_len)
  188. {
  189. HMAC_CTX *c = NULL;
  190. static unsigned char m[EVP_MAX_MD_SIZE];
  191. static const unsigned char dummy_key[1] = {'\0'};
  192. if (md == NULL)
  193. md = m;
  194. if ((c = HMAC_CTX_new()) == NULL)
  195. goto err;
  196. /* For HMAC_Init_ex, NULL key signals reuse. */
  197. if (key == NULL && key_len == 0) {
  198. key = dummy_key;
  199. }
  200. if (!HMAC_Init_ex(c, key, key_len, evp_md, NULL))
  201. goto err;
  202. if (!HMAC_Update(c, d, n))
  203. goto err;
  204. if (!HMAC_Final(c, md, md_len))
  205. goto err;
  206. HMAC_CTX_free(c);
  207. return md;
  208. err:
  209. HMAC_CTX_free(c);
  210. return NULL;
  211. }
  212. void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags)
  213. {
  214. EVP_MD_CTX_set_flags(ctx->i_ctx, flags);
  215. EVP_MD_CTX_set_flags(ctx->o_ctx, flags);
  216. EVP_MD_CTX_set_flags(ctx->md_ctx, flags);
  217. }
  218. const EVP_MD *HMAC_CTX_get_md(const HMAC_CTX *ctx)
  219. {
  220. return ctx->md;
  221. }