Yet more PKCS#12 integration: add lots of files under crypto/pkcs12 and add
[openssl.git] / crypto / pkcs12 / p12_decr.c
1 /* p12_decr.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 <stdlib.h>
61 #include <objects.h>
62 #include <pkcs7.h>
63 #include <err.h>
64 #include <crypto.h>
65 #include <sha.h>
66 #include <stack.h>
67 #include <evp.h>
68 #include <string.h>
69 #include "hmac.h"
70 #include "pkcs12.h"
71
72 /* Define this to dump decrypted output to files called DERnnn */
73 /*#define DEBUG_DECRYPT*/
74
75
76 /* Encrypt/Decrypt a buffer based on password and algor, result in a
77  * Malloc'ed buffer
78  */
79
80 unsigned char * PKCS12_pbe_crypt (algor, pass, passlen, in, inlen,
81                                                  data, datalen, en_de)
82 X509_ALGOR *algor;
83 unsigned char *pass;
84 int passlen;
85 unsigned char *in;
86 int inlen;
87 unsigned char **data;
88 int *datalen;
89 int en_de;
90 {
91         unsigned char *out;
92         int outlen, i;
93         EVP_CIPHER_CTX ctx;
94
95         if(!(out = Malloc (inlen + 8))) {
96                 PKCS12err(PKCS12_F_PKCS12_PBE_CRYPT,ERR_R_MALLOC_FAILURE);
97                 return NULL;
98         }
99
100         /* Decrypt data */
101         if (!EVP_PBE_ALGOR_CipherInit (algor, pass, passlen, &ctx, en_de)) {
102                 PKCS12err(PKCS12_F_PKCS12_PBE_CRYPT,PKCS12_R_PKCS12_ALGOR_CIPHERINIT_ERROR);
103                 return NULL;
104         }
105         EVP_CipherUpdate (&ctx, out, &i, in, inlen);
106         outlen = i;
107         if(!EVP_CipherFinal (&ctx, out + i, &i)) {
108                 Free (out);
109                 PKCS12err(PKCS12_F_PKCS12_PBE_CRYPT,PKCS12_R_PKCS12_CIPHERFINAL_ERROR);
110                 return NULL;
111         }
112         outlen += i;
113         if (datalen) *datalen = outlen;
114         if (data) *data = out;
115         return out;
116
117 }
118
119 /* Decrypt an OCTET STRING and decode ASN1 structure 
120  * if seq & 1 'obj' is a stack of structures to be encoded
121  * if seq & 2 zero buffer after use
122  * as a sequence.
123  */
124
125 char * PKCS12_decrypt_d2i (algor, d2i, free_func, pass, passlen, oct, seq)
126 X509_ALGOR *algor;
127 char * (*d2i)();
128 void (*free_func)();
129 unsigned char *pass;
130 int passlen;
131 ASN1_OCTET_STRING *oct;
132 int seq;
133 {
134         unsigned char *out, *p, *ret;
135         int outlen;
136         if (!PKCS12_pbe_crypt (algor, pass, passlen, oct->data, oct->length,
137                                  &out, &outlen, 0)) {
138                 PKCS12err(PKCS12_F_PKCS12_DECRYPT_D2I,PKCS12_R_PKCS12_PBE_CRYPT_ERROR);
139                 return NULL;
140         }
141         p = out;
142 #ifdef DEBUG_DECRYPT
143         {
144                 FILE *op;
145
146                 char fname[30];
147                 static int fnm = 1;
148                 sprintf(fname, "DER%d", fnm++);
149                 op = fopen(fname, "wb");
150                 fwrite (p, 1, outlen, op);
151                 fclose(op);
152         }
153 #endif
154         if (seq & 1) ret = (char *) d2i_ASN1_SET(NULL, &p, outlen, d2i,
155                                 free_func, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL);
156         else ret = d2i(NULL, &p, outlen);
157         if (seq & 2) memset(out, 0, outlen);
158         if(!ret) PKCS12err(PKCS12_F_PKCS12_DECRYPT_D2I,PKCS12_R_DECODE_ERROR);
159         Free (out);
160         return ret;
161 }
162
163 /* Encode ASN1 structure and encrypt, return OCTET STRING 
164  * if 'seq' is non-zero 'obj' is a stack of structures to be encoded
165  * as a sequence
166  */
167
168 ASN1_OCTET_STRING *PKCS12_i2d_encrypt (algor, i2d, pass, passlen, obj, seq)
169 X509_ALGOR *algor;
170 int (*i2d)();
171 unsigned char *pass;
172 int passlen;
173 char *obj;
174 int seq;
175 {
176         ASN1_OCTET_STRING *oct;
177         unsigned char *in, *p;
178         int inlen;
179         if (!(oct = ASN1_OCTET_STRING_new ())) {
180                 PKCS12err(PKCS12_F_PKCS12_I2D_ENCRYPT,ERR_R_MALLOC_FAILURE);
181                 return NULL;
182         }
183         if (seq) inlen = i2d_ASN1_SET((STACK *)obj, NULL, i2d, V_ASN1_SEQUENCE,
184                                                  V_ASN1_UNIVERSAL, IS_SEQUENCE);
185         else inlen = i2d (obj, NULL);
186         if (!inlen) {
187                 PKCS12err(PKCS12_F_PKCS12_I2D_ENCRYPT,PKCS12_R_ENCODE_ERROR);
188                 return NULL;
189         }
190         if (!(in = Malloc (inlen))) {
191                 PKCS12err(PKCS12_F_PKCS12_I2D_ENCRYPT,ERR_R_MALLOC_FAILURE);
192                 return NULL;
193         }
194         p = in;
195         if (seq) i2d_ASN1_SET((STACK *)obj, &p, i2d, V_ASN1_SEQUENCE,
196                                                  V_ASN1_UNIVERSAL, IS_SEQUENCE);
197         else i2d (obj, &p);
198         if (!PKCS12_pbe_crypt (algor, pass, passlen, in, inlen, &oct->data,
199                                  &oct->length, 1)) {
200                 PKCS12err(PKCS12_F_PKCS12_I2D_ENCRYPT,PKCS12_R_ENCRYPT_ERROR);
201                 Free(in);
202                 return NULL;
203         }
204         Free (in);
205         return oct;
206 }