Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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 <string.h>
  59. #include <openssl/digest.h>
  60. #include <openssl/mem.h>
  61. uint8_t *HMAC(const EVP_MD *evp_md, const void *key, size_t key_len,
  62. const uint8_t *data, size_t data_len, uint8_t *out,
  63. unsigned int *out_len) {
  64. HMAC_CTX ctx;
  65. static uint8_t static_out_buffer[EVP_MAX_MD_SIZE];
  66. /* OpenSSL has traditionally supported using a static buffer if |out| is
  67. * NULL. We maintain that but don't document it. This behaviour should be
  68. * considered to be deprecated. */
  69. if (out == NULL) {
  70. out = static_out_buffer;
  71. }
  72. HMAC_CTX_init(&ctx);
  73. if (!HMAC_Init_ex(&ctx, key, key_len, evp_md, NULL) ||
  74. !HMAC_Update(&ctx, data, data_len) ||
  75. !HMAC_Final(&ctx, out, out_len)) {
  76. out = NULL;
  77. }
  78. HMAC_CTX_cleanup(&ctx);
  79. return out;
  80. }
  81. void HMAC_CTX_init(HMAC_CTX *ctx) {
  82. ctx->md = NULL;
  83. EVP_MD_CTX_init(&ctx->i_ctx);
  84. EVP_MD_CTX_init(&ctx->o_ctx);
  85. EVP_MD_CTX_init(&ctx->md_ctx);
  86. }
  87. void HMAC_CTX_cleanup(HMAC_CTX *ctx) {
  88. EVP_MD_CTX_cleanup(&ctx->i_ctx);
  89. EVP_MD_CTX_cleanup(&ctx->o_ctx);
  90. EVP_MD_CTX_cleanup(&ctx->md_ctx);
  91. OPENSSL_cleanse(ctx, sizeof(HMAC_CTX));
  92. }
  93. int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, size_t key_len,
  94. const EVP_MD *md, ENGINE *impl) {
  95. if (md == NULL) {
  96. md = ctx->md;
  97. }
  98. /* If either |key| is non-NULL or |md| has changed, initialize with a new key
  99. * rather than rewinding the previous one.
  100. *
  101. * TODO(davidben,eroman): Passing the previous |md| with a NULL |key| is
  102. * ambiguous between using the empty key and reusing the previous key. There
  103. * exist callers which intend the latter, but the former is an awkward edge
  104. * case. Fix to API to avoid this. */
  105. if (md != ctx->md || key != NULL) {
  106. uint8_t pad[EVP_MAX_MD_BLOCK_SIZE];
  107. uint8_t key_block[EVP_MAX_MD_BLOCK_SIZE];
  108. unsigned key_block_len;
  109. size_t block_size = EVP_MD_block_size(md);
  110. assert(block_size <= sizeof(key_block));
  111. if (block_size < key_len) {
  112. /* Long keys are hashed. */
  113. if (!EVP_DigestInit_ex(&ctx->md_ctx, md, impl) ||
  114. !EVP_DigestUpdate(&ctx->md_ctx, key, key_len) ||
  115. !EVP_DigestFinal_ex(&ctx->md_ctx, key_block, &key_block_len)) {
  116. return 0;
  117. }
  118. } else {
  119. assert(key_len <= sizeof(key_block));
  120. memcpy(key_block, key, key_len);
  121. key_block_len = (unsigned)key_len;
  122. }
  123. /* Keys are then padded with zeros. */
  124. if (key_block_len != EVP_MAX_MD_BLOCK_SIZE) {
  125. memset(&key_block[key_block_len], 0, sizeof(key_block) - key_block_len);
  126. }
  127. for (size_t i = 0; i < EVP_MAX_MD_BLOCK_SIZE; i++) {
  128. pad[i] = 0x36 ^ key_block[i];
  129. }
  130. if (!EVP_DigestInit_ex(&ctx->i_ctx, md, impl) ||
  131. !EVP_DigestUpdate(&ctx->i_ctx, pad, EVP_MD_block_size(md))) {
  132. return 0;
  133. }
  134. for (size_t i = 0; i < EVP_MAX_MD_BLOCK_SIZE; i++) {
  135. pad[i] = 0x5c ^ key_block[i];
  136. }
  137. if (!EVP_DigestInit_ex(&ctx->o_ctx, md, impl) ||
  138. !EVP_DigestUpdate(&ctx->o_ctx, pad, EVP_MD_block_size(md))) {
  139. return 0;
  140. }
  141. ctx->md = md;
  142. }
  143. if (!EVP_MD_CTX_copy_ex(&ctx->md_ctx, &ctx->i_ctx)) {
  144. return 0;
  145. }
  146. return 1;
  147. }
  148. int HMAC_Update(HMAC_CTX *ctx, const uint8_t *data, size_t data_len) {
  149. return EVP_DigestUpdate(&ctx->md_ctx, data, data_len);
  150. }
  151. int HMAC_Final(HMAC_CTX *ctx, uint8_t *out, unsigned int *out_len) {
  152. unsigned int i;
  153. uint8_t buf[EVP_MAX_MD_SIZE];
  154. /* TODO(davidben): The only thing that can officially fail here is
  155. * |EVP_MD_CTX_copy_ex|, but even that should be impossible in this case. */
  156. if (!EVP_DigestFinal_ex(&ctx->md_ctx, buf, &i) ||
  157. !EVP_MD_CTX_copy_ex(&ctx->md_ctx, &ctx->o_ctx) ||
  158. !EVP_DigestUpdate(&ctx->md_ctx, buf, i) ||
  159. !EVP_DigestFinal_ex(&ctx->md_ctx, out, out_len)) {
  160. *out_len = 0;
  161. return 0;
  162. }
  163. return 1;
  164. }
  165. size_t HMAC_size(const HMAC_CTX *ctx) {
  166. return EVP_MD_size(ctx->md);
  167. }
  168. int HMAC_CTX_copy_ex(HMAC_CTX *dest, const HMAC_CTX *src) {
  169. if (!EVP_MD_CTX_copy_ex(&dest->i_ctx, &src->i_ctx) ||
  170. !EVP_MD_CTX_copy_ex(&dest->o_ctx, &src->o_ctx) ||
  171. !EVP_MD_CTX_copy_ex(&dest->md_ctx, &src->md_ctx)) {
  172. return 0;
  173. }
  174. dest->md = src->md;
  175. return 1;
  176. }
  177. int HMAC_Init(HMAC_CTX *ctx, const void *key, int key_len, const EVP_MD *md) {
  178. if (key && md) {
  179. HMAC_CTX_init(ctx);
  180. }
  181. return HMAC_Init_ex(ctx, key, key_len, md, NULL);
  182. }
  183. int HMAC_CTX_copy(HMAC_CTX *dest, const HMAC_CTX *src) {
  184. HMAC_CTX_init(dest);
  185. return HMAC_CTX_copy_ex(dest, src);
  186. }