56d88b07596cd553568ae821f3d2d87e325c3b57
[openssl.git] / crypto / pkcs12 / p12_crt.c
1 /* p12_crt.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) 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 "cryptlib.h"
61 #include <openssl/pkcs12.h>
62
63 PKCS12 *PKCS12_create(char *pass, char *name, EVP_PKEY *pkey, X509 *cert,
64              STACK *ca, int nid_key, int nid_cert, int iter, int mac_iter,
65              int keytype)
66 {
67         PKCS12 *p12;
68         STACK *bags, *safes;
69         PKCS12_SAFEBAG *bag;
70         PKCS8_PRIV_KEY_INFO *p8;
71         PKCS7 *authsafe;
72         X509 *tcert;
73         int i;
74         unsigned char keyid[EVP_MAX_MD_SIZE];
75         unsigned int keyidlen;
76
77         /* Set defaults */
78         if(!nid_cert) nid_cert = NID_pbe_WithSHA1And40BitRC2_CBC;
79         if(!nid_key) nid_key = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
80         if(!iter) iter = PKCS12_DEFAULT_ITER;
81         if(!mac_iter) mac_iter = 1;
82
83         if(!pkey || !cert) {
84                 PKCS12err(PKCS12_F_PKCS12_CREATE,PKCS12_R_INVALID_NULL_ARGUMENT);
85                 return NULL;
86         }
87
88         if(!(bags = sk_new (NULL))) {
89                 PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE);
90                 return NULL;
91         }
92
93         /* Add user certificate */
94         if(!(bag = M_PKCS12_x5092certbag(cert))) return NULL;
95         if(name && !PKCS12_add_friendlyname(bag, name, -1)) return NULL;
96         X509_digest(cert, EVP_sha1(), keyid, &keyidlen);
97         if(!PKCS12_add_localkeyid(bag, keyid, keyidlen)) return NULL;
98
99         if(!sk_push(bags, (char *)bag)) {
100                 PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE);
101                 return NULL;
102         }
103         
104         /* Add all other certificates */
105         if(ca) {
106                 for(i = 0; i < sk_num(ca); i++) {
107                         tcert = (X509 *)sk_value(ca, i);
108                         if(!(bag = M_PKCS12_x5092certbag(tcert))) return NULL;
109                         if(!sk_push(bags, (char *)bag)) {
110                                 PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE);
111                                 return NULL;
112                         }
113                 }
114         }
115
116         /* Turn certbags into encrypted authsafe */
117         authsafe = PKCS12_pack_p7encdata (nid_cert, pass, -1, NULL, 0,
118                                           iter, bags);
119         sk_pop_free(bags, PKCS12_SAFEBAG_free);
120
121         if (!authsafe) return NULL;
122
123         if(!(safes = sk_new (NULL)) || !sk_push(safes, (char *)authsafe)) {
124                 PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE);
125                 return NULL;
126         }
127
128         /* Make a shrouded key bag */
129         if(!(p8 = EVP_PKEY2PKCS8 (pkey))) return NULL;
130         if(keytype && !PKCS8_add_keyusage(p8, keytype)) return NULL;
131         bag = PKCS12_MAKE_SHKEYBAG (nid_key, pass, -1, NULL, 0, iter, p8);
132         if(!bag) return NULL;
133         PKCS8_PRIV_KEY_INFO_free(p8);
134         if (name && !PKCS12_add_friendlyname (bag, name, -1)) return NULL;
135         if(!PKCS12_add_localkeyid (bag, keyid, keyidlen)) return NULL;
136         if(!(bags = sk_new(NULL)) || !sk_push (bags, (char *)bag)) {
137                 PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE);
138                 return NULL;
139         }
140         /* Turn it into unencrypted safe bag */
141         if(!(authsafe = PKCS12_pack_p7data (bags))) return NULL;
142         sk_pop_free(bags, PKCS12_SAFEBAG_free);
143         if(!sk_push(safes, (char *)authsafe)) {
144                 PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE);
145                 return NULL;
146         }
147
148         if(!(p12 = PKCS12_init (NID_pkcs7_data))) return NULL;
149
150         if(!M_PKCS12_pack_authsafes (p12, safes)) return NULL;
151
152         sk_pop_free(safes, PKCS7_free);
153
154         if(!PKCS12_set_mac (p12, pass, -1, NULL, 0, mac_iter, NULL))
155             return NULL;
156
157         return p12;
158
159 }