p12_mutl.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /* p12_mutl.c */
  2. /*
  3. * Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
  4. * 1999.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * [email protected].
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * ([email protected]). This product includes software written by Tim
  56. * Hudson ([email protected]).
  57. *
  58. */
  59. #ifndef OPENSSL_NO_HMAC
  60. # include <stdio.h>
  61. # include "cryptlib.h"
  62. # include <openssl/crypto.h>
  63. # include <openssl/hmac.h>
  64. # include <openssl/rand.h>
  65. # include <openssl/pkcs12.h>
  66. /* Generate a MAC */
  67. int PKCS12_gen_mac(PKCS12 *p12, const char *pass, int passlen,
  68. unsigned char *mac, unsigned int *maclen)
  69. {
  70. const EVP_MD *md_type;
  71. HMAC_CTX hmac;
  72. unsigned char key[EVP_MAX_MD_SIZE], *salt;
  73. int saltlen, iter;
  74. int md_size;
  75. if (!PKCS7_type_is_data(p12->authsafes)) {
  76. PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_CONTENT_TYPE_NOT_DATA);
  77. return 0;
  78. }
  79. salt = p12->mac->salt->data;
  80. saltlen = p12->mac->salt->length;
  81. if (!p12->mac->iter)
  82. iter = 1;
  83. else
  84. iter = ASN1_INTEGER_get(p12->mac->iter);
  85. if (!(md_type = EVP_get_digestbyobj(p12->mac->dinfo->algor->algorithm))) {
  86. PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_UNKNOWN_DIGEST_ALGORITHM);
  87. return 0;
  88. }
  89. md_size = EVP_MD_size(md_type);
  90. if (md_size < 0)
  91. return 0;
  92. #if defined(WINSCP) && defined(PBE_UNICODE)
  93. if (passlen < 0)
  94. {
  95. // PKCS12_key_gen_uni cannot handle -1 length (contrary to PKCS12_key_gen_asc).
  96. // OPENSSL_asc2uni adds the trailing \0 to the length,
  97. // even if input ascii password length does not include it.
  98. passlen = (wcslen((wchar_t*)pass) * sizeof(wchar_t)) + sizeof(wchar_t);
  99. }
  100. #endif
  101. if (!PKCS12_key_gen(pass, passlen, salt, saltlen, PKCS12_MAC_ID, iter,
  102. md_size, key, md_type)) {
  103. PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_KEY_GEN_ERROR);
  104. return 0;
  105. }
  106. HMAC_CTX_init(&hmac);
  107. if (!HMAC_Init_ex(&hmac, key, md_size, md_type, NULL)
  108. || !HMAC_Update(&hmac, p12->authsafes->d.data->data,
  109. p12->authsafes->d.data->length)
  110. || !HMAC_Final(&hmac, mac, maclen)) {
  111. HMAC_CTX_cleanup(&hmac);
  112. return 0;
  113. }
  114. HMAC_CTX_cleanup(&hmac);
  115. return 1;
  116. }
  117. /* Verify the mac */
  118. int PKCS12_verify_mac(PKCS12 *p12, const char *pass, int passlen)
  119. {
  120. unsigned char mac[EVP_MAX_MD_SIZE];
  121. unsigned int maclen;
  122. if (p12->mac == NULL) {
  123. PKCS12err(PKCS12_F_PKCS12_VERIFY_MAC, PKCS12_R_MAC_ABSENT);
  124. return 0;
  125. }
  126. if (!PKCS12_gen_mac(p12, pass, passlen, mac, &maclen)) {
  127. PKCS12err(PKCS12_F_PKCS12_VERIFY_MAC, PKCS12_R_MAC_GENERATION_ERROR);
  128. return 0;
  129. }
  130. if ((maclen != (unsigned int)p12->mac->dinfo->digest->length)
  131. || CRYPTO_memcmp(mac, p12->mac->dinfo->digest->data, maclen))
  132. return 0;
  133. return 1;
  134. }
  135. /* Set a mac */
  136. int PKCS12_set_mac(PKCS12 *p12, const char *pass, int passlen,
  137. unsigned char *salt, int saltlen, int iter,
  138. const EVP_MD *md_type)
  139. {
  140. unsigned char mac[EVP_MAX_MD_SIZE];
  141. unsigned int maclen;
  142. if (!md_type)
  143. md_type = EVP_sha1();
  144. if (PKCS12_setup_mac(p12, iter, salt, saltlen, md_type) == PKCS12_ERROR) {
  145. PKCS12err(PKCS12_F_PKCS12_SET_MAC, PKCS12_R_MAC_SETUP_ERROR);
  146. return 0;
  147. }
  148. if (!PKCS12_gen_mac(p12, pass, passlen, mac, &maclen)) {
  149. PKCS12err(PKCS12_F_PKCS12_SET_MAC, PKCS12_R_MAC_GENERATION_ERROR);
  150. return 0;
  151. }
  152. if (!(M_ASN1_OCTET_STRING_set(p12->mac->dinfo->digest, mac, maclen))) {
  153. PKCS12err(PKCS12_F_PKCS12_SET_MAC, PKCS12_R_MAC_STRING_SET_ERROR);
  154. return 0;
  155. }
  156. return 1;
  157. }
  158. /* Set up a mac structure */
  159. int PKCS12_setup_mac(PKCS12 *p12, int iter, unsigned char *salt, int saltlen,
  160. const EVP_MD *md_type)
  161. {
  162. if (!(p12->mac = PKCS12_MAC_DATA_new()))
  163. return PKCS12_ERROR;
  164. if (iter > 1) {
  165. if (!(p12->mac->iter = M_ASN1_INTEGER_new())) {
  166. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  167. return 0;
  168. }
  169. if (!ASN1_INTEGER_set(p12->mac->iter, iter)) {
  170. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  171. return 0;
  172. }
  173. }
  174. if (!saltlen)
  175. saltlen = PKCS12_SALT_LEN;
  176. if ((p12->mac->salt->data = OPENSSL_malloc(saltlen)) == NULL) {
  177. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  178. return 0;
  179. }
  180. p12->mac->salt->length = saltlen;
  181. if (!salt) {
  182. if (RAND_bytes(p12->mac->salt->data, saltlen) <= 0)
  183. return 0;
  184. } else
  185. memcpy(p12->mac->salt->data, salt, saltlen);
  186. p12->mac->dinfo->algor->algorithm = OBJ_nid2obj(EVP_MD_type(md_type));
  187. if (!(p12->mac->dinfo->algor->parameter = ASN1_TYPE_new())) {
  188. PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
  189. return 0;
  190. }
  191. p12->mac->dinfo->algor->parameter->type = V_ASN1_NULL;
  192. return 1;
  193. }
  194. #endif