Adapt HMAC to the EVP_MD_CTX changes
[openssl.git] / crypto / pkcs12 / p12_mutl.c
1 /* p12_mutl.c */
2 /*
3  * Written by Dr Stephen N Henson (steve@openssl.org) 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  *    licensing@OpenSSL.org.
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  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59
60 # include <stdio.h>
61 # include "internal/cryptlib.h"
62 #include <openssl/crypto.h>
63 # include <openssl/hmac.h>
64 # include <openssl/rand.h>
65 # include <openssl/pkcs12.h>
66
67 # define TK26_MAC_KEY_LEN 32
68
69 static int pkcs12_gen_gost_mac_key(const char *pass, int passlen,
70                                    const unsigned char *salt, int saltlen,
71                                    int iter, int keylen, unsigned char *key,
72                                    const EVP_MD *digest)
73 {
74     unsigned char out[96];
75
76     if (keylen != TK26_MAC_KEY_LEN) {
77         return 0;
78     }
79
80     if (!PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter,
81                            digest, sizeof(out), out)) {
82         return 0;
83     }
84     memcpy(key, out + sizeof(out) - TK26_MAC_KEY_LEN, TK26_MAC_KEY_LEN);
85     OPENSSL_cleanse(out, sizeof(out));
86     return 1;
87 }
88
89 /* Generate a MAC */
90 int PKCS12_gen_mac(PKCS12 *p12, const char *pass, int passlen,
91                    unsigned char *mac, unsigned int *maclen)
92 {
93     const EVP_MD *md_type;
94     HMAC_CTX hmac = HMAC_CTX_EMPTY;
95     unsigned char key[EVP_MAX_MD_SIZE], *salt;
96     int saltlen, iter;
97     int md_size = 0;
98     int md_type_nid;
99
100     if (!PKCS7_type_is_data(p12->authsafes)) {
101         PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_CONTENT_TYPE_NOT_DATA);
102         return 0;
103     }
104
105     salt = p12->mac->salt->data;
106     saltlen = p12->mac->salt->length;
107     if (!p12->mac->iter)
108         iter = 1;
109     else
110         iter = ASN1_INTEGER_get(p12->mac->iter);
111     if ((md_type = EVP_get_digestbyobj(p12->mac->dinfo->algor->algorithm))
112             == NULL) {
113         PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_UNKNOWN_DIGEST_ALGORITHM);
114         return 0;
115     }
116     md_size = EVP_MD_size(md_type);
117     md_type_nid = EVP_MD_type(md_type);
118     if (md_size < 0)
119         return 0;
120     if ((md_type_nid == NID_id_GostR3411_94
121          || md_type_nid == NID_id_GostR3411_2012_256
122          || md_type_nid == NID_id_GostR3411_2012_512)
123         && !getenv("LEGACY_GOST_PKCS12")) {
124         md_size = TK26_MAC_KEY_LEN;
125         if (!pkcs12_gen_gost_mac_key(pass, passlen, salt, saltlen, iter,
126                                      md_size, key, md_type)) {
127             PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_KEY_GEN_ERROR);
128             return 0;
129         }
130     } else
131         if (!PKCS12_key_gen(pass, passlen, salt, saltlen, PKCS12_MAC_ID, iter,
132                             md_size, key, md_type)) {
133         PKCS12err(PKCS12_F_PKCS12_GEN_MAC, PKCS12_R_KEY_GEN_ERROR);
134         return 0;
135     }
136     HMAC_CTX_init(&hmac);
137     if (!HMAC_Init_ex(&hmac, key, md_size, md_type, NULL)
138         || !HMAC_Update(&hmac, p12->authsafes->d.data->data,
139                         p12->authsafes->d.data->length)
140         || !HMAC_Final(&hmac, mac, maclen)) {
141         HMAC_CTX_cleanup(&hmac);
142         return 0;
143     }
144     HMAC_CTX_cleanup(&hmac);
145     return 1;
146 }
147
148 /* Verify the mac */
149 int PKCS12_verify_mac(PKCS12 *p12, const char *pass, int passlen)
150 {
151     unsigned char mac[EVP_MAX_MD_SIZE];
152     unsigned int maclen;
153     if (p12->mac == NULL) {
154         PKCS12err(PKCS12_F_PKCS12_VERIFY_MAC, PKCS12_R_MAC_ABSENT);
155         return 0;
156     }
157     if (!PKCS12_gen_mac(p12, pass, passlen, mac, &maclen)) {
158         PKCS12err(PKCS12_F_PKCS12_VERIFY_MAC, PKCS12_R_MAC_GENERATION_ERROR);
159         return 0;
160     }
161     if ((maclen != (unsigned int)p12->mac->dinfo->digest->length)
162         || CRYPTO_memcmp(mac, p12->mac->dinfo->digest->data, maclen))
163         return 0;
164     return 1;
165 }
166
167 /* Set a mac */
168
169 int PKCS12_set_mac(PKCS12 *p12, const char *pass, int passlen,
170                    unsigned char *salt, int saltlen, int iter,
171                    const EVP_MD *md_type)
172 {
173     unsigned char mac[EVP_MAX_MD_SIZE];
174     unsigned int maclen;
175
176     if (!md_type)
177         md_type = EVP_sha1();
178     if (PKCS12_setup_mac(p12, iter, salt, saltlen, md_type) == PKCS12_ERROR) {
179         PKCS12err(PKCS12_F_PKCS12_SET_MAC, PKCS12_R_MAC_SETUP_ERROR);
180         return 0;
181     }
182     if (!PKCS12_gen_mac(p12, pass, passlen, mac, &maclen)) {
183         PKCS12err(PKCS12_F_PKCS12_SET_MAC, PKCS12_R_MAC_GENERATION_ERROR);
184         return 0;
185     }
186     if (!(ASN1_OCTET_STRING_set(p12->mac->dinfo->digest, mac, maclen))) {
187         PKCS12err(PKCS12_F_PKCS12_SET_MAC, PKCS12_R_MAC_STRING_SET_ERROR);
188         return 0;
189     }
190     return 1;
191 }
192
193 /* Set up a mac structure */
194 int PKCS12_setup_mac(PKCS12 *p12, int iter, unsigned char *salt, int saltlen,
195                      const EVP_MD *md_type)
196 {
197     if ((p12->mac = PKCS12_MAC_DATA_new()) == NULL)
198         return PKCS12_ERROR;
199     if (iter > 1) {
200         if ((p12->mac->iter = ASN1_INTEGER_new()) == NULL) {
201             PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
202             return 0;
203         }
204         if (!ASN1_INTEGER_set(p12->mac->iter, iter)) {
205             PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
206             return 0;
207         }
208     }
209     if (!saltlen)
210         saltlen = PKCS12_SALT_LEN;
211     if ((p12->mac->salt->data = OPENSSL_malloc(saltlen)) == NULL) {
212         PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
213         return 0;
214     }
215     p12->mac->salt->length = saltlen;
216     if (!salt) {
217         if (RAND_bytes(p12->mac->salt->data, saltlen) <= 0)
218             return 0;
219     } else
220         memcpy(p12->mac->salt->data, salt, saltlen);
221     p12->mac->dinfo->algor->algorithm = OBJ_nid2obj(EVP_MD_type(md_type));
222     if ((p12->mac->dinfo->algor->parameter = ASN1_TYPE_new()) == NULL) {
223         PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE);
224         return 0;
225     }
226     p12->mac->dinfo->algor->parameter->type = V_ASN1_NULL;
227
228     return 1;
229 }