You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

209 lines
7.0 KiB

  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.] */
  56. #include <openssl/hmac.h>
  57. #include <assert.h>
  58. #include <openssl/mem.h>
  59. uint8_t *HMAC(const EVP_MD *evp_md, const void *key, size_t key_len,
  60. const uint8_t *data, size_t data_len, uint8_t *out,
  61. unsigned int *out_len) {
  62. HMAC_CTX ctx;
  63. static uint8_t static_out_buffer[EVP_MAX_MD_SIZE];
  64. /* OpenSSL has traditionally supported using a static buffer if |out| is
  65. * NULL. We maintain that but don't document it. This behaviour should be
  66. * considered to be deprecated. */
  67. if (out == NULL) {
  68. out = static_out_buffer;
  69. }
  70. HMAC_CTX_init(&ctx);
  71. if (!HMAC_Init(&ctx, key, key_len, evp_md) ||
  72. !HMAC_Update(&ctx, data, data_len) ||
  73. !HMAC_Final(&ctx, out, out_len)) {
  74. out = NULL;
  75. }
  76. HMAC_CTX_cleanup(&ctx);
  77. return out;
  78. }
  79. void HMAC_CTX_init(HMAC_CTX *ctx) {
  80. EVP_MD_CTX_init(&ctx->i_ctx);
  81. EVP_MD_CTX_init(&ctx->o_ctx);
  82. EVP_MD_CTX_init(&ctx->md_ctx);
  83. }
  84. void HMAC_CTX_cleanup(HMAC_CTX *ctx) {
  85. EVP_MD_CTX_cleanup(&ctx->i_ctx);
  86. EVP_MD_CTX_cleanup(&ctx->o_ctx);
  87. EVP_MD_CTX_cleanup(&ctx->md_ctx);
  88. OPENSSL_cleanse(ctx, sizeof(ctx));
  89. }
  90. int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, size_t key_len,
  91. const EVP_MD *md, ENGINE *impl) {
  92. unsigned i, reset = 0;
  93. uint8_t pad[HMAC_MAX_MD_CBLOCK];
  94. if (md != NULL) {
  95. reset = 1;
  96. ctx->md = md;
  97. } else {
  98. md = ctx->md;
  99. }
  100. if (key != NULL) {
  101. size_t block_size = EVP_MD_block_size(md);
  102. reset = 1;
  103. assert(block_size <= sizeof(ctx->key));
  104. if (block_size < key_len) {
  105. if (!EVP_DigestInit_ex(&ctx->md_ctx, md, impl) ||
  106. !EVP_DigestUpdate(&ctx->md_ctx, key, key_len) ||
  107. !EVP_DigestFinal_ex(&(ctx->md_ctx), ctx->key, &ctx->key_length)) {
  108. goto err;
  109. }
  110. } else {
  111. assert(key_len >= 0 && key_len <= sizeof(ctx->key));
  112. memcpy(ctx->key, key, key_len);
  113. ctx->key_length = key_len;
  114. }
  115. if (ctx->key_length != HMAC_MAX_MD_CBLOCK) {
  116. memset(&ctx->key[ctx->key_length], 0, sizeof(ctx->key) - ctx->key_length);
  117. }
  118. }
  119. if (reset) {
  120. for (i = 0; i < HMAC_MAX_MD_CBLOCK; i++) {
  121. pad[i] = 0x36 ^ ctx->key[i];
  122. }
  123. if (!EVP_DigestInit_ex(&ctx->i_ctx, md, impl) ||
  124. !EVP_DigestUpdate(&ctx->i_ctx, pad, EVP_MD_block_size(md))) {
  125. goto err;
  126. }
  127. for (i = 0; i < HMAC_MAX_MD_CBLOCK; i++) {
  128. pad[i] = 0x5c ^ ctx->key[i];
  129. }
  130. if (!EVP_DigestInit_ex(&ctx->o_ctx, md, impl) ||
  131. !EVP_DigestUpdate(&ctx->o_ctx, pad, EVP_MD_block_size(md))) {
  132. goto err;
  133. }
  134. }
  135. if (!EVP_MD_CTX_copy_ex(&ctx->md_ctx, &ctx->i_ctx)) {
  136. goto err;
  137. }
  138. return 1;
  139. err:
  140. return 0;
  141. }
  142. int HMAC_Update(HMAC_CTX *ctx, const uint8_t *data, size_t data_len) {
  143. return EVP_DigestUpdate(&ctx->md_ctx, data, data_len);
  144. }
  145. int HMAC_Final(HMAC_CTX *ctx, uint8_t *out, unsigned int *out_len) {
  146. unsigned int i;
  147. uint8_t buf[EVP_MAX_MD_SIZE];
  148. if (!EVP_DigestFinal_ex(&ctx->md_ctx, buf, &i) ||
  149. !EVP_MD_CTX_copy_ex(&ctx->md_ctx, &ctx->o_ctx) ||
  150. !EVP_DigestUpdate(&ctx->md_ctx, buf, i) ||
  151. !EVP_DigestFinal_ex(&ctx->md_ctx, out, out_len)) {
  152. *out_len = 0;
  153. return 0;
  154. }
  155. return 1;
  156. }
  157. size_t HMAC_size(const HMAC_CTX *ctx) {
  158. return EVP_MD_size(ctx->md);
  159. }
  160. int HMAC_CTX_copy(HMAC_CTX *dest, const HMAC_CTX *src) {
  161. if (!EVP_MD_CTX_copy(&dest->i_ctx, &src->i_ctx) ||
  162. !EVP_MD_CTX_copy(&dest->o_ctx, &src->o_ctx) ||
  163. !EVP_MD_CTX_copy(&dest->md_ctx, &src->md_ctx)) {
  164. return 0;
  165. }
  166. memcpy(dest->key, src->key, HMAC_MAX_MD_CBLOCK);
  167. dest->key_length = src->key_length;
  168. dest->md = src->md;
  169. return 1;
  170. }
  171. void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags) {
  172. EVP_MD_CTX_set_flags(&ctx->i_ctx, flags);
  173. EVP_MD_CTX_set_flags(&ctx->o_ctx, flags);
  174. EVP_MD_CTX_set_flags(&ctx->md_ctx, flags);
  175. }
  176. int HMAC_Init(HMAC_CTX *ctx, const void *key, int key_len, const EVP_MD *md) {
  177. if (key && md) {
  178. HMAC_CTX_init(ctx);
  179. }
  180. return HMAC_Init_ex(ctx, key, key_len, md, NULL);
  181. }