p12_mutl.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /* p12_mutl.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project 1999.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999 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. * licensing@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. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com).
  56. *
  57. */
  58. #ifndef OPENSSL_NO_HMAC
  59. #include <stdio.h>
  60. #include "cryptlib.h"
  61. #include <openssl/hmac.h>
  62. #include <openssl/rand.h>
  63. #include <openssl/pkcs12.h>
  64. /* Generate a MAC */
  65. int PKCS12_gen_mac(PKCS12 *p12, const char *pass, int passlen,
  66. unsigned char *mac, unsigned int *maclen)
  67. {
  68. const EVP_MD *md_type;
  69. HMAC_CTX hmac;
  70. unsigned char key[EVP_MAX_MD_SIZE], *salt;
  71. int saltlen, iter;
  72. int md_size;
  73. if (!PKCS7_type_is_data(p12->authsafes))
  74. {
  75. PKCS12err(PKCS12_F_PKCS12_GEN_MAC,PKCS12_R_CONTENT_TYPE_NOT_DATA);
  76. return 0;
  77. }
  78. salt = p12->mac->salt->data;
  79. saltlen = p12->mac->salt->length;
  80. if (!p12->mac->iter) iter = 1;
  81. else iter = ASN1_INTEGER_get (p12->mac->iter);
  82. if(!(md_type =
  83. EVP_get_digestbyobj (p12->mac->dinfo->algor->algorithm))) {
  84. PKCS12err(PKCS12_F_PKCS12_GEN_MAC,PKCS12_R_UNKNOWN_DIGEST_ALGORITHM);
  85. return 0;
  86. }
  87. md_size = EVP_MD_size(md_type);
  88. if (md_size < 0)
  89. return 0;
  90. if(!PKCS12_key_gen (pass, passlen, salt, saltlen, PKCS12_MAC_ID, iter,
  91. md_size, key, md_type)) {
  92. PKCS12err(PKCS12_F_PKCS12_GEN_MAC,PKCS12_R_KEY_GEN_ERROR);
  93. return 0;
  94. }
  95. HMAC_CTX_init(&hmac);
  96. if (!HMAC_Init_ex(&hmac, key, md_size, md_type, NULL)
  97. || !HMAC_Update(&hmac, p12->authsafes->d.data->data,
  98. p12->authsafes->d.data->length)
  99. || !HMAC_Final(&hmac, mac, maclen))
  100. {
  101. HMAC_CTX_cleanup(&hmac);
  102. return 0;
  103. }
  104. HMAC_CTX_cleanup(&hmac);
  105. return 1;
  106. }
  107. /* Verify the mac */
  108. int PKCS12_verify_mac(PKCS12 *p12, const char *pass, int passlen)
  109. {
  110. unsigned char mac[EVP_MAX_MD_SIZE];
  111. unsigned int maclen;
  112. if(p12->mac == NULL) {
  113. PKCS12err(PKCS12_F_PKCS12_VERIFY_MAC,PKCS12_R_MAC_ABSENT);
  114. return 0;
  115. }
  116. if (!PKCS12_gen_mac (p12, pass, passlen, mac, &maclen)) {
  117. PKCS12err(PKCS12_F_PKCS12_VERIFY_MAC,PKCS12_R_MAC_GENERATION_ERROR);
  118. return 0;
  119. }
  120. if ((maclen != (unsigned int)p12->mac->dinfo->digest->length)
  121. || memcmp (mac, p12->mac->dinfo->digest->data, maclen)) return 0;
  122. return 1;
  123. }
  124. /* Set a mac */
  125. int PKCS12_set_mac(PKCS12 *p12, const char *pass, int passlen,
  126. unsigned char *salt, int saltlen, int iter, const EVP_MD *md_type)
  127. {
  128. unsigned char mac[EVP_MAX_MD_SIZE];
  129. unsigned int maclen;
  130. if (!md_type) md_type = EVP_sha1();
  131. if (PKCS12_setup_mac (p12, iter, salt, saltlen, md_type) ==
  132. PKCS12_ERROR) {
  133. PKCS12err(PKCS12_F_PKCS12_SET_MAC,PKCS12_R_MAC_SETUP_ERROR);
  134. return 0;
  135. }
  136. if (!PKCS12_gen_mac (p12, pass, passlen, mac, &maclen)) {
  137. PKCS12err(PKCS12_F_PKCS12_SET_MAC,PKCS12_R_MAC_GENERATION_ERROR);
  138. return 0;
  139. }
  140. if (!(M_ASN1_OCTET_STRING_set (p12->mac->dinfo->digest, mac, maclen))) {
  141. PKCS12err(PKCS12_F_PKCS12_SET_MAC,PKCS12_R_MAC_STRING_SET_ERROR);
  142. return 0;
  143. }
  144. return 1;
  145. }
  146. /* Set up a mac structure */
  147. int PKCS12_setup_mac(PKCS12 *p12, int iter, unsigned char *salt, int saltlen,
  148. const EVP_MD *md_type)
  149. {
  150. if (!(p12->mac = PKCS12_MAC_DATA_new())) return PKCS12_ERROR;
  151. if (iter > 1) {
  152. if(!(p12->mac->iter = M_ASN1_INTEGER_new())) {
  153. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  154. return 0;
  155. }
  156. if (!ASN1_INTEGER_set(p12->mac->iter, iter)) {
  157. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  158. return 0;
  159. }
  160. }
  161. if (!saltlen) saltlen = PKCS12_SALT_LEN;
  162. p12->mac->salt->length = saltlen;
  163. if (!(p12->mac->salt->data = OPENSSL_malloc (saltlen))) {
  164. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  165. return 0;
  166. }
  167. if (!salt) {
  168. if (RAND_pseudo_bytes (p12->mac->salt->data, saltlen) < 0)
  169. return 0;
  170. }
  171. else memcpy (p12->mac->salt->data, salt, saltlen);
  172. p12->mac->dinfo->algor->algorithm = OBJ_nid2obj(EVP_MD_type(md_type));
  173. if (!(p12->mac->dinfo->algor->parameter = ASN1_TYPE_new())) {
  174. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  175. return 0;
  176. }
  177. p12->mac->dinfo->algor->parameter->type = V_ASN1_NULL;
  178. return 1;
  179. }
  180. #endif