dh_kdf.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /* crypto/dh/dh_kdf.c */
  2. /*
  3. * Written by Stephen Henson for the OpenSSL project.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 2013 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * openssl-core@openssl.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. */
  53. #include <string.h>
  54. #include <openssl/dh.h>
  55. #include <openssl/evp.h>
  56. #include <openssl/asn1.h>
  57. #include <openssl/cms.h>
  58. /* Key derivation from X9.42/RFC2631 */
  59. #define DH_KDF_MAX (1L << 30)
  60. /* Skip past an ASN1 structure: for OBJECT skip content octets too */
  61. static int skip_asn1(unsigned char **pp, long *plen, int exptag)
  62. {
  63. const unsigned char *q = *pp;
  64. int i, tag, xclass;
  65. long tmplen;
  66. i = ASN1_get_object(&q, &tmplen, &tag, &xclass, *plen);
  67. if (i & 0x80)
  68. return 0;
  69. if (tag != exptag || xclass != V_ASN1_UNIVERSAL)
  70. return 0;
  71. if (tag == V_ASN1_OBJECT)
  72. q += tmplen;
  73. *plen -= q - *pp;
  74. *pp = (unsigned char *)q;
  75. return 1;
  76. }
  77. /*
  78. * Encode the DH shared info structure, return an offset to the counter value
  79. * so we can update the structure without reencoding it.
  80. */
  81. static int dh_sharedinfo_encode(unsigned char **pder, unsigned char **pctr,
  82. ASN1_OBJECT *key_oid, size_t outlen,
  83. const unsigned char *ukm, size_t ukmlen)
  84. {
  85. unsigned char *p;
  86. int derlen;
  87. long tlen;
  88. /* "magic" value to check offset is sane */
  89. static unsigned char ctr[4] = { 0xF3, 0x17, 0x22, 0x53 };
  90. X509_ALGOR atmp;
  91. ASN1_OCTET_STRING ctr_oct, ukm_oct, *pukm_oct;
  92. ASN1_TYPE ctr_atype;
  93. if (ukmlen > DH_KDF_MAX || outlen > DH_KDF_MAX)
  94. return 0;
  95. ctr_oct.data = ctr;
  96. ctr_oct.length = 4;
  97. ctr_oct.flags = 0;
  98. ctr_oct.type = V_ASN1_OCTET_STRING;
  99. ctr_atype.type = V_ASN1_OCTET_STRING;
  100. ctr_atype.value.octet_string = &ctr_oct;
  101. atmp.algorithm = key_oid;
  102. atmp.parameter = &ctr_atype;
  103. if (ukm) {
  104. ukm_oct.type = V_ASN1_OCTET_STRING;
  105. ukm_oct.flags = 0;
  106. ukm_oct.data = (unsigned char *)ukm;
  107. ukm_oct.length = ukmlen;
  108. pukm_oct = &ukm_oct;
  109. } else
  110. pukm_oct = NULL;
  111. derlen = CMS_SharedInfo_encode(pder, &atmp, pukm_oct, outlen);
  112. if (derlen <= 0)
  113. return 0;
  114. p = *pder;
  115. tlen = derlen;
  116. if (!skip_asn1(&p, &tlen, V_ASN1_SEQUENCE))
  117. return 0;
  118. if (!skip_asn1(&p, &tlen, V_ASN1_SEQUENCE))
  119. return 0;
  120. if (!skip_asn1(&p, &tlen, V_ASN1_OBJECT))
  121. return 0;
  122. if (!skip_asn1(&p, &tlen, V_ASN1_OCTET_STRING))
  123. return 0;
  124. if (CRYPTO_memcmp(p, ctr, 4))
  125. return 0;
  126. *pctr = p;
  127. return derlen;
  128. }
  129. int DH_KDF_X9_42(unsigned char *out, size_t outlen,
  130. const unsigned char *Z, size_t Zlen,
  131. ASN1_OBJECT *key_oid,
  132. const unsigned char *ukm, size_t ukmlen, const EVP_MD *md)
  133. {
  134. EVP_MD_CTX mctx;
  135. int rv = 0;
  136. unsigned int i;
  137. size_t mdlen;
  138. unsigned char *der = NULL, *ctr;
  139. int derlen;
  140. if (Zlen > DH_KDF_MAX)
  141. return 0;
  142. mdlen = EVP_MD_size(md);
  143. EVP_MD_CTX_init(&mctx);
  144. derlen = dh_sharedinfo_encode(&der, &ctr, key_oid, outlen, ukm, ukmlen);
  145. if (derlen == 0)
  146. goto err;
  147. for (i = 1;; i++) {
  148. unsigned char mtmp[EVP_MAX_MD_SIZE];
  149. EVP_DigestInit_ex(&mctx, md, NULL);
  150. if (!EVP_DigestUpdate(&mctx, Z, Zlen))
  151. goto err;
  152. ctr[3] = i & 0xFF;
  153. ctr[2] = (i >> 8) & 0xFF;
  154. ctr[1] = (i >> 16) & 0xFF;
  155. ctr[0] = (i >> 24) & 0xFF;
  156. if (!EVP_DigestUpdate(&mctx, der, derlen))
  157. goto err;
  158. if (outlen >= mdlen) {
  159. if (!EVP_DigestFinal(&mctx, out, NULL))
  160. goto err;
  161. outlen -= mdlen;
  162. if (outlen == 0)
  163. break;
  164. out += mdlen;
  165. } else {
  166. if (!EVP_DigestFinal(&mctx, mtmp, NULL))
  167. goto err;
  168. memcpy(out, mtmp, outlen);
  169. OPENSSL_cleanse(mtmp, mdlen);
  170. break;
  171. }
  172. }
  173. rv = 1;
  174. err:
  175. if (der)
  176. OPENSSL_free(der);
  177. EVP_MD_CTX_cleanup(&mctx);
  178. return rv;
  179. }