Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /* ====================================================================
  2. * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  3. *
  4. * The Elliptic Curve Public-Key Crypto Library (ECC Code) included
  5. * herein is developed by SUN MICROSYSTEMS, INC., and is contributed
  6. * to the OpenSSL project.
  7. *
  8. * The ECC Code is licensed pursuant to the OpenSSL open source
  9. * license provided below.
  10. *
  11. * The ECDH software is originally written by Douglas Stebila of
  12. * Sun Microsystems Laboratories.
  13. *
  14. */
  15. /* ====================================================================
  16. * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved.
  17. *
  18. * Redistribution and use in source and binary forms, with or without
  19. * modification, are permitted provided that the following conditions
  20. * are met:
  21. *
  22. * 1. Redistributions of source code must retain the above copyright
  23. * notice, this list of conditions and the following disclaimer.
  24. *
  25. * 2. Redistributions in binary form must reproduce the above copyright
  26. * notice, this list of conditions and the following disclaimer in
  27. * the documentation and/or other materials provided with the
  28. * distribution.
  29. *
  30. * 3. All advertising materials mentioning features or use of this
  31. * software must display the following acknowledgment:
  32. * "This product includes software developed by the OpenSSL Project
  33. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  34. *
  35. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  36. * endorse or promote products derived from this software without
  37. * prior written permission. For written permission, please contact
  38. * licensing@OpenSSL.org.
  39. *
  40. * 5. Products derived from this software may not be called "OpenSSL"
  41. * nor may "OpenSSL" appear in their names without prior written
  42. * permission of the OpenSSL Project.
  43. *
  44. * 6. Redistributions of any form whatsoever must retain the following
  45. * acknowledgment:
  46. * "This product includes software developed by the OpenSSL Project
  47. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  48. *
  49. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  50. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  51. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  52. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  53. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  54. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  55. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  56. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  57. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  58. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  59. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  60. * OF THE POSSIBILITY OF SUCH DAMAGE.
  61. * ====================================================================
  62. *
  63. * This product includes cryptographic software written by Eric Young
  64. * (eay@cryptsoft.com). This product includes software written by Tim
  65. * Hudson (tjh@cryptsoft.com). */
  66. #include <openssl/ecdh.h>
  67. #include <openssl/bn.h>
  68. #include <openssl/digest.h>
  69. #include <openssl/err.h>
  70. #include <openssl/mem.h>
  71. int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
  72. EC_KEY *priv_key, void *(*KDF)(const void *in, size_t inlen,
  73. void *out, size_t *outlen)) {
  74. BN_CTX *ctx;
  75. EC_POINT *tmp = NULL;
  76. BIGNUM *x = NULL, *y = NULL;
  77. const BIGNUM *priv;
  78. const EC_GROUP *group;
  79. int ret = -1;
  80. size_t buflen, len;
  81. uint8_t *buf = NULL;
  82. if ((ctx = BN_CTX_new()) == NULL) {
  83. goto err;
  84. }
  85. BN_CTX_start(ctx);
  86. x = BN_CTX_get(ctx);
  87. y = BN_CTX_get(ctx);
  88. priv = EC_KEY_get0_private_key(priv_key);
  89. if (priv == NULL) {
  90. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_NO_PRIVATE_VALUE);
  91. goto err;
  92. }
  93. group = EC_KEY_get0_group(priv_key);
  94. tmp = EC_POINT_new(group);
  95. if (tmp == NULL) {
  96. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_MALLOC_FAILURE);
  97. goto err;
  98. }
  99. if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv, ctx)) {
  100. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_POINT_ARITHMETIC_FAILURE);
  101. goto err;
  102. }
  103. if (!EC_POINT_get_affine_coordinates_GFp(group, tmp, x, y, ctx)) {
  104. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_POINT_ARITHMETIC_FAILURE);
  105. goto err;
  106. }
  107. buflen = (EC_GROUP_get_degree(group) + 7) / 8;
  108. len = BN_num_bytes(x);
  109. if (len > buflen) {
  110. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_INTERNAL_ERROR);
  111. goto err;
  112. }
  113. buf = OPENSSL_malloc(buflen);
  114. if (buf == NULL) {
  115. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_MALLOC_FAILURE);
  116. goto err;
  117. }
  118. memset(buf, 0, buflen - len);
  119. if (len != (size_t)BN_bn2bin(x, buf + buflen - len)) {
  120. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_BN_LIB);
  121. goto err;
  122. }
  123. if (KDF != 0) {
  124. if (KDF(buf, buflen, out, &outlen) == NULL) {
  125. OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_KDF_FAILED);
  126. goto err;
  127. }
  128. ret = outlen;
  129. } else {
  130. /* no KDF, just copy as much as we can */
  131. if (outlen > buflen) {
  132. outlen = buflen;
  133. }
  134. memcpy(out, buf, outlen);
  135. ret = outlen;
  136. }
  137. err:
  138. if (tmp)
  139. EC_POINT_free(tmp);
  140. if (ctx)
  141. BN_CTX_end(ctx);
  142. if (ctx)
  143. BN_CTX_free(ctx);
  144. if (buf)
  145. OPENSSL_free(buf);
  146. return ret;
  147. }
  148. /* Key derivation function from X9.62/SECG */
  149. /* Way more than we will ever need */
  150. #define ECDH_KDF_MAX (1 << 30)
  151. int ECDH_KDF_X9_62(uint8_t *out, size_t outlen, const uint8_t *Z,
  152. size_t Zlen, const uint8_t *sinfo, size_t sinfolen,
  153. const EVP_MD *md) {
  154. EVP_MD_CTX mctx;
  155. int rv = 0;
  156. unsigned int i;
  157. size_t mdlen;
  158. uint8_t ctr[4];
  159. if (sinfolen > ECDH_KDF_MAX || outlen > ECDH_KDF_MAX || Zlen > ECDH_KDF_MAX) {
  160. return 0;
  161. }
  162. mdlen = EVP_MD_size(md);
  163. EVP_MD_CTX_init(&mctx);
  164. for (i = 1;; i++) {
  165. uint8_t mtmp[EVP_MAX_MD_SIZE];
  166. EVP_DigestInit_ex(&mctx, md, NULL);
  167. ctr[3] = i & 0xFF;
  168. ctr[2] = (i >> 8) & 0xFF;
  169. ctr[1] = (i >> 16) & 0xFF;
  170. ctr[0] = (i >> 24) & 0xFF;
  171. if (!EVP_DigestUpdate(&mctx, Z, Zlen) ||
  172. !EVP_DigestUpdate(&mctx, ctr, sizeof(ctr)) ||
  173. !EVP_DigestUpdate(&mctx, sinfo, sinfolen)) {
  174. goto err;
  175. }
  176. if (outlen >= mdlen) {
  177. if (!EVP_DigestFinal(&mctx, out, NULL)) {
  178. goto err;
  179. }
  180. outlen -= mdlen;
  181. if (outlen == 0) {
  182. break;
  183. }
  184. out += mdlen;
  185. } else {
  186. if (!EVP_DigestFinal(&mctx, mtmp, NULL)) {
  187. goto err;
  188. }
  189. memcpy(out, mtmp, outlen);
  190. OPENSSL_cleanse(mtmp, mdlen);
  191. break;
  192. }
  193. }
  194. rv = 1;
  195. err:
  196. EVP_MD_CTX_cleanup(&mctx);
  197. return rv;
  198. }