xref: /openbsd-src/lib/libcrypto/pkcs12/p12_key.c (revision 50b7afb2c2c0993b0894d4e34bf857cb13ed9c80)
1 /* $OpenBSD: p12_key.c,v 1.21 2014/07/12 16:03:37 miod Exp $ */
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 
59 #include <stdio.h>
60 #include <string.h>
61 
62 #include <openssl/bn.h>
63 #include <openssl/err.h>
64 #include <openssl/pkcs12.h>
65 
66 /* PKCS12 compatible key/IV generation */
67 #ifndef min
68 #define min(a,b) ((a) < (b) ? (a) : (b))
69 #endif
70 
71 int
72 PKCS12_key_gen_asc(const char *pass, int passlen, unsigned char *salt,
73     int saltlen, int id, int iter, int n, unsigned char *out,
74     const EVP_MD *md_type)
75 {
76 	int ret;
77 	unsigned char *unipass;
78 	int uniplen;
79 
80 	if (!pass) {
81 		unipass = NULL;
82 		uniplen = 0;
83 	} else if (!OPENSSL_asc2uni(pass, passlen, &unipass, &uniplen)) {
84 		PKCS12err(PKCS12_F_PKCS12_KEY_GEN_ASC, ERR_R_MALLOC_FAILURE);
85 		return 0;
86 	}
87 	ret = PKCS12_key_gen_uni(unipass, uniplen, salt, saltlen,
88 	    id, iter, n, out, md_type);
89 	if (ret <= 0)
90 		return 0;
91 	if (unipass) {
92 		OPENSSL_cleanse(unipass, uniplen);
93 		free(unipass);
94 	}
95 	return ret;
96 }
97 
98 int
99 PKCS12_key_gen_uni(unsigned char *pass, int passlen, unsigned char *salt,
100     int saltlen, int id, int iter, int n, unsigned char *out,
101     const EVP_MD *md_type)
102 {
103 	unsigned char *B, *D, *I, *p, *Ai;
104 	int Slen, Plen, Ilen, Ijlen;
105 	int i, j, u, v;
106 	int ret = 0;
107 	BIGNUM *Ij, *Bpl1;	/* These hold Ij and B + 1 */
108 	EVP_MD_CTX ctx;
109 
110 #if 0
111 	if (!pass) {
112 		PKCS12err(PKCS12_F_PKCS12_KEY_GEN_UNI, ERR_R_PASSED_NULL_PARAMETER);
113 		return 0;
114 	}
115 #endif
116 
117 	EVP_MD_CTX_init(&ctx);
118 	v = EVP_MD_block_size(md_type);
119 	u = EVP_MD_size(md_type);
120 	if (u < 0)
121 		return 0;
122 	D = malloc(v);
123 	Ai = malloc(u);
124 	B = malloc(v + 1);
125 	Slen = v * ((saltlen + v - 1) / v);
126 	if (passlen)
127 		Plen = v * ((passlen + v - 1)/v);
128 	else
129 		Plen = 0;
130 	Ilen = Slen + Plen;
131 	I = malloc(Ilen);
132 	Ij = BN_new();
133 	Bpl1 = BN_new();
134 	if (!D || !Ai || !B || !I || !Ij || !Bpl1)
135 		goto err;
136 	for (i = 0; i < v; i++)
137 		D[i] = id;
138 	p = I;
139 	for (i = 0; i < Slen; i++)
140 		*p++ = salt[i % saltlen];
141 	for (i = 0; i < Plen; i++)
142 		*p++ = pass[i % passlen];
143 	for (;;) {
144 		if (!EVP_DigestInit_ex(&ctx, md_type, NULL) ||
145 		    !EVP_DigestUpdate(&ctx, D, v) ||
146 		    !EVP_DigestUpdate(&ctx, I, Ilen) ||
147 		    !EVP_DigestFinal_ex(&ctx, Ai, NULL))
148 			goto err;
149 		for (j = 1; j < iter; j++) {
150 			if (!EVP_DigestInit_ex(&ctx, md_type, NULL) ||
151 			    !EVP_DigestUpdate(&ctx, Ai, u) ||
152 			    !EVP_DigestFinal_ex(&ctx, Ai, NULL))
153 				goto err;
154 		}
155 		memcpy (out, Ai, min (n, u));
156 		if (u >= n) {
157 			ret = 1;
158 			goto end;
159 		}
160 		n -= u;
161 		out += u;
162 		for (j = 0; j < v; j++)
163 			B[j] = Ai[j % u];
164 		/* Work out B + 1 first then can use B as tmp space */
165 		if (!BN_bin2bn (B, v, Bpl1))
166 			goto err;
167 		if (!BN_add_word (Bpl1, 1))
168 			goto err;
169 		for (j = 0; j < Ilen; j += v) {
170 			if (!BN_bin2bn(I + j, v, Ij))
171 				goto err;
172 			if (!BN_add(Ij, Ij, Bpl1))
173 				goto err;
174 			if (!BN_bn2bin(Ij, B))
175 				goto err;
176 			Ijlen = BN_num_bytes (Ij);
177 			/* If more than 2^(v*8) - 1 cut off MSB */
178 			if (Ijlen > v) {
179 				if (!BN_bn2bin (Ij, B))
180 					goto err;
181 				memcpy (I + j, B + 1, v);
182 #ifndef PKCS12_BROKEN_KEYGEN
183 				/* If less than v bytes pad with zeroes */
184 			} else if (Ijlen < v) {
185 				memset(I + j, 0, v - Ijlen);
186 				if (!BN_bn2bin(Ij, I + j + v - Ijlen))
187 					goto err;
188 #endif
189 			} else if (!BN_bn2bin (Ij, I + j))
190 				goto err;
191 		}
192 	}
193 
194 err:
195 	PKCS12err(PKCS12_F_PKCS12_KEY_GEN_UNI, ERR_R_MALLOC_FAILURE);
196 
197 end:
198 	free(Ai);
199 	free(B);
200 	free(D);
201 	free(I);
202 	BN_free(Ij);
203 	BN_free(Bpl1);
204 	EVP_MD_CTX_cleanup(&ctx);
205 	return ret;
206 }
207