hmac.c 6.2 KB

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