2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
61 #include <openssl/pkcs12.h>
64 static int pkcs12_add_bag(STACK_OF(PKCS12_SAFEBAG
) **pbags
, PKCS12_SAFEBAG
*bag
);
66 static int copy_bag_attr(PKCS12_SAFEBAG
*bag
, EVP_PKEY
*pkey
, int nid
)
70 idx
= EVP_PKEY_get_attr_by_NID(pkey
, nid
, -1);
73 attr
= EVP_PKEY_get_attr(pkey
, idx
);
74 if (!X509at_add1_attr(&bag
->attrib
, attr
))
79 PKCS12
*PKCS12_create(char *pass
, char *name
, EVP_PKEY
*pkey
, X509
*cert
,
80 STACK_OF(X509
) *ca
, int nid_key
, int nid_cert
, int iter
, int mac_iter
,
84 STACK_OF(PKCS7
) *safes
= NULL
;
85 STACK_OF(PKCS12_SAFEBAG
) *bags
= NULL
;
86 PKCS12_SAFEBAG
*bag
= NULL
;
88 unsigned char keyid
[EVP_MAX_MD_SIZE
];
89 unsigned int keyidlen
= 0;
96 nid_cert
= NID_pbe_WithSHA1And3_Key_TripleDES_CBC
;
100 nid_cert
= NID_pbe_WithSHA1And3_Key_TripleDES_CBC
;
102 nid_cert
= NID_pbe_WithSHA1And40BitRC2_CBC
;
106 nid_key
= NID_pbe_WithSHA1And3_Key_TripleDES_CBC
;
108 iter
= PKCS12_DEFAULT_ITER
;
112 if(!pkey
&& !cert
&& !ca
)
114 PKCS12err(PKCS12_F_PKCS12_CREATE
,PKCS12_R_INVALID_NULL_ARGUMENT
);
120 if(!X509_check_private_key(cert
, pkey
))
122 X509_digest(cert
, EVP_sha1(), keyid
, &keyidlen
);
127 bag
= PKCS12_add_cert(&bags
, cert
);
128 if(name
&& !PKCS12_add_friendlyname(bag
, name
, -1))
130 if(keyidlen
&& !PKCS12_add_localkeyid(bag
, keyid
, keyidlen
))
134 /* Add all other certificates */
135 for(i
= 0; i
< sk_X509_num(ca
); i
++)
137 if (!PKCS12_add_cert(&bags
, sk_X509_value(ca
, i
)))
141 if (bags
&& !PKCS12_add_safe(&safes
, bags
, nid_cert
, iter
, pass
))
144 sk_PKCS12_SAFEBAG_pop_free(bags
, PKCS12_SAFEBAG_free
);
149 bag
= PKCS12_add_key(&bags
, pkey
, keytype
, iter
, nid_key
, pass
);
154 if (!copy_bag_attr(bag
, pkey
, NID_ms_csp_name
))
156 if (!copy_bag_attr(bag
, pkey
, NID_LocalKeySet
))
159 if(name
&& !PKCS12_add_friendlyname(bag
, name
, -1))
161 if(keyidlen
&& !PKCS12_add_localkeyid(bag
, keyid
, keyidlen
))
165 if (bags
&& !PKCS12_add_safe(&safes
, bags
, -1, 0, NULL
))
168 sk_PKCS12_SAFEBAG_pop_free(bags
, PKCS12_SAFEBAG_free
);
171 p12
= PKCS12_add_safes(safes
, 0);
176 sk_PKCS7_pop_free(safes
, PKCS7_free
);
180 if ((mac_iter
!= -1) &&
181 !PKCS12_set_mac(p12
, pass
, -1, NULL
, 0, mac_iter
, NULL
))
191 sk_PKCS7_pop_free(safes
, PKCS7_free
);
193 sk_PKCS12_SAFEBAG_pop_free(bags
, PKCS12_SAFEBAG_free
);
198 PKCS12_SAFEBAG
*PKCS12_add_cert(STACK_OF(PKCS12_SAFEBAG
) **pbags
, X509
*cert
)
200 PKCS12_SAFEBAG
*bag
= NULL
;
203 unsigned char *keyid
;
206 /* Add user certificate */
207 if(!(bag
= PKCS12_x5092certbag(cert
)))
210 /* Use friendlyName and localKeyID in certificate.
214 name
= (char *)X509_alias_get0(cert
, &namelen
);
216 if(name
&& !PKCS12_add_friendlyname(bag
, name
, namelen
))
219 keyid
= X509_keyid_get0(cert
, &keyidlen
);
221 if(keyid
&& !PKCS12_add_localkeyid(bag
, keyid
, keyidlen
))
224 if (!pkcs12_add_bag(pbags
, bag
))
232 PKCS12_SAFEBAG_free(bag
);
238 PKCS12_SAFEBAG
*PKCS12_add_key(STACK_OF(PKCS12_SAFEBAG
) **pbags
, EVP_PKEY
*key
,
239 int key_usage
, int iter
,
240 int nid_key
, char *pass
)
243 PKCS12_SAFEBAG
*bag
= NULL
;
244 PKCS8_PRIV_KEY_INFO
*p8
= NULL
;
246 /* Make a PKCS#8 structure */
247 if(!(p8
= EVP_PKEY2PKCS8(key
)))
249 if(key_usage
&& !PKCS8_add_keyusage(p8
, key_usage
))
253 bag
= PKCS12_MAKE_SHKEYBAG(nid_key
, pass
, -1, NULL
, 0, iter
, p8
);
254 PKCS8_PRIV_KEY_INFO_free(p8
);
257 bag
= PKCS12_MAKE_KEYBAG(p8
);
262 if (!pkcs12_add_bag(pbags
, bag
))
270 PKCS12_SAFEBAG_free(bag
);
276 int PKCS12_add_safe(STACK_OF(PKCS7
) **psafes
, STACK_OF(PKCS12_SAFEBAG
) *bags
,
277 int nid_safe
, int iter
, char *pass
)
284 *psafes
= sk_PKCS7_new_null();
293 #ifdef OPENSSL_NO_RC2
294 nid_safe
= NID_pbe_WithSHA1And3_Key_TripleDES_CBC
;
296 nid_safe
= NID_pbe_WithSHA1And40BitRC2_CBC
;
300 p7
= PKCS12_pack_p7data(bags
);
302 p7
= PKCS12_pack_p7encdata(nid_safe
, pass
, -1, NULL
, 0,
307 if (!sk_PKCS7_push(*psafes
, p7
))
315 sk_PKCS7_free(*psafes
);
326 static int pkcs12_add_bag(STACK_OF(PKCS12_SAFEBAG
) **pbags
, PKCS12_SAFEBAG
*bag
)
333 *pbags
= sk_PKCS12_SAFEBAG_new_null();
341 if (!sk_PKCS12_SAFEBAG_push(*pbags
, bag
))
345 sk_PKCS12_SAFEBAG_free(*pbags
);
356 PKCS12
*PKCS12_add_safes(STACK_OF(PKCS7
) *safes
, int nid_p7
)
360 nid_p7
= NID_pkcs7_data
;
361 p12
= PKCS12_init(nid_p7
);
366 if(!PKCS12_pack_authsafes(p12
, safes
))