d67f0cda431901fa07d2e74abb79146159cc60e7
[openssl.git] / crypto / evp / evp_enc.c
1 /* crypto/evp/evp_enc.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include "cryptlib.h"
61 #include <openssl/evp.h>
62 #include <openssl/err.h>
63 #include "evp_locl.h"
64
65 #include <assert.h>
66
67 const char *EVP_version="EVP" OPENSSL_VERSION_PTEXT;
68
69 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
70         {
71         memset(ctx,0,sizeof(EVP_CIPHER_CTX));
72         /* ctx->cipher=NULL; */
73         }
74
75 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
76              unsigned char *key, unsigned char *iv, int enc)
77         {
78         if(enc && (enc != -1)) enc = 1;
79         if (cipher)
80                 {
81                 if(ctx->cipher_data)
82                         OPENSSL_free(ctx->cipher_data);
83                 ctx->cipher=cipher;
84                 ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size);
85                 ctx->key_len = cipher->key_len;
86                 ctx->flags = 0;
87                 if(ctx->cipher->flags & EVP_CIPH_CTRL_INIT) {
88                         if(!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_INIT, 0, NULL)) {
89                                 EVPerr(EVP_F_EVP_CIPHERINIT, EVP_R_INITIALIZATION_ERROR);
90                                 return 0;
91                         }
92                 }
93         } else if(!ctx->cipher) {
94                 EVPerr(EVP_F_EVP_CIPHERINIT, EVP_R_NO_CIPHER_SET);
95                 return 0;
96         }
97
98         /* we assume block size is a power of 2 in *cryptUpdate */
99         assert(ctx->cipher->block_size == 1
100                || ctx->cipher->block_size == 8
101                || ctx->cipher->block_size == 16);
102
103         if(!(EVP_CIPHER_CTX_flags(ctx) & EVP_CIPH_CUSTOM_IV)) {
104                 switch(EVP_CIPHER_CTX_mode(ctx)) {
105
106                         case EVP_CIPH_STREAM_CIPHER:
107                         case EVP_CIPH_ECB_MODE:
108                         break;
109
110                         case EVP_CIPH_CFB_MODE:
111                         case EVP_CIPH_OFB_MODE:
112
113                         ctx->num = 0;
114
115                         case EVP_CIPH_CBC_MODE:
116
117                         if(iv) memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
118                         memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
119                         break;
120
121                         default:
122                         return 0;
123                         break;
124                 }
125         }
126
127         if(key || (ctx->cipher->flags & EVP_CIPH_ALWAYS_CALL_INIT)) {
128                 if(!ctx->cipher->init(ctx,key,iv,enc)) return 0;
129         }
130         if(enc != -1) ctx->encrypt=enc;
131         ctx->buf_len=0;
132         ctx->final_used=0;
133         ctx->block_mask=ctx->cipher->block_size-1;
134         return 1;
135         }
136
137 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
138              unsigned char *in, int inl)
139         {
140         if (ctx->encrypt)
141                 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
142         else    return EVP_DecryptUpdate(ctx,out,outl,in,inl);
143         }
144
145 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
146         {
147         if (ctx->encrypt)
148                 return EVP_EncryptFinal(ctx,out,outl);
149         else    return(EVP_DecryptFinal(ctx,out,outl));
150         }
151
152 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
153              unsigned char *key, unsigned char *iv)
154         {
155         return EVP_CipherInit(ctx, cipher, key, iv, 1);
156         }
157
158 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
159              unsigned char *key, unsigned char *iv)
160         {
161         return EVP_CipherInit(ctx, cipher, key, iv, 0);
162         }
163
164 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
165              unsigned char *in, int inl)
166         {
167         int i,j,bl;
168
169         if(ctx->buf_len == 0 && (inl&(ctx->block_mask)) == 0)
170                 {
171                 if(ctx->cipher->do_cipher(ctx,out,in,inl))
172                         {
173                         *outl=inl;
174                         return 1;
175                         }
176                 else
177                         {
178                         *outl=0;
179                         return 0;
180                         }
181                 }
182         i=ctx->buf_len;
183         bl=ctx->cipher->block_size;
184         if (i != 0)
185                 {
186                 if (i+inl < bl)
187                         {
188                         memcpy(&(ctx->buf[i]),in,inl);
189                         ctx->buf_len+=inl;
190                         *outl=0;
191                         return 1;
192                         }
193                 else
194                         {
195                         j=bl-i;
196                         memcpy(&(ctx->buf[i]),in,j);
197                         if(!ctx->cipher->do_cipher(ctx,out,ctx->buf,bl)) return 0;
198                         inl-=j;
199                         in+=j;
200                         out+=bl;
201                         *outl=bl;
202                         }
203                 }
204         else
205                 *outl = 0;
206         i=inl&(bl-1);
207         inl-=i;
208         if (inl > 0)
209                 {
210                 if(!ctx->cipher->do_cipher(ctx,out,in,inl)) return 0;
211                 *outl+=inl;
212                 }
213
214         if (i != 0)
215                 memcpy(ctx->buf,&(in[inl]),i);
216         ctx->buf_len=i;
217         return 1;
218         }
219
220 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
221         {
222         int i,n,b,bl;
223
224         b=ctx->cipher->block_size;
225         if (b == 1)
226                 {
227                 *outl=0;
228                 return 1;
229                 }
230         bl=ctx->buf_len;
231         if (ctx->flags & EVP_CIPH_NO_PADDING)
232                 {
233                 if(bl)
234                         {
235                         EVPerr(EVP_F_EVP_ENCRYPTFINAL,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
236                         return 0;
237                         }
238                 *outl = 0;
239                 return 1;
240                 }
241         n=b-bl;
242         for (i=bl; i<b; i++)
243                 ctx->buf[i]=n;
244         if(!ctx->cipher->do_cipher(ctx,out,ctx->buf,b)) return 0;
245         *outl=b;
246         return 1;
247         }
248
249 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
250              unsigned char *in, int inl)
251         {
252         int b;
253
254         if (inl == 0)
255                 {
256                 *outl=0;
257                 return 1;
258                 }
259
260         if (ctx->flags & EVP_CIPH_NO_PADDING)
261                 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
262
263         b=ctx->cipher->block_size;
264         if(ctx->final_used)
265                 {
266                 memcpy(out,ctx->final,b);
267                 out+=b;
268                 }
269                 
270         if(!EVP_EncryptUpdate(ctx,out,outl,in,inl))
271                 return 0;
272
273         /* if we have 'decrypted' a multiple of block size, make sure
274          * we have a copy of this last block */
275         if (b > 1 && !ctx->buf_len)
276                 {
277                 if(!ctx->final_used)
278                         {
279                         *outl-=b;
280                         ctx->final_used=1;
281                         }
282                 memcpy(ctx->final,&out[*outl],b);
283                 }
284         else if(ctx->final_used)
285                 {
286                 ctx->final_used=0;
287                 *outl+=b;
288                 }
289         return 1;
290         }
291
292 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
293         {
294         int i,b;
295         int n;
296
297         *outl=0;
298         b=ctx->cipher->block_size;
299         if (ctx->flags & EVP_CIPH_NO_PADDING)
300                 {
301                 if(ctx->buf_len)
302                         {
303                         EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
304                         return 0;
305                         }
306                 *outl = 0;
307                 return 1;
308                 }
309         if (b > 1)
310                 {
311                 if (ctx->buf_len || !ctx->final_used)
312                         {
313                         EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_WRONG_FINAL_BLOCK_LENGTH);
314                         return(0);
315                         }
316                 n=ctx->final[b-1];
317                 if (n > b)
318                         {
319                         EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT);
320                         return(0);
321                         }
322                 for (i=0; i<n; i++)
323                         {
324                         if (ctx->final[--b] != n)
325                                 {
326                                 EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT);
327                                 return(0);
328                                 }
329                         }
330                 n=ctx->cipher->block_size-n;
331                 for (i=0; i<n; i++)
332                         out[i]=ctx->final[i];
333                 *outl=n;
334                 }
335         else
336                 *outl=0;
337         return(1);
338         }
339
340 int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *c)
341         {
342         if ((c->cipher != NULL) && (c->cipher->cleanup != NULL))
343                 {
344                 if(!c->cipher->cleanup(c)) return 0;
345                 }
346         OPENSSL_free(c->cipher_data);
347         memset(c,0,sizeof(EVP_CIPHER_CTX));
348         return 1;
349         }
350
351 int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *c, int keylen)
352         {
353         if(c->cipher->flags & EVP_CIPH_CUSTOM_KEY_LENGTH) 
354                 return EVP_CIPHER_CTX_ctrl(c, EVP_CTRL_SET_KEY_LENGTH, keylen, NULL);
355         if(c->key_len == keylen) return 1;
356         if((keylen > 0) && (c->cipher->flags & EVP_CIPH_VARIABLE_LENGTH))
357                 {
358                 c->key_len = keylen;
359                 return 1;
360                 }
361         EVPerr(EVP_F_EVP_CIPHER_CTX_SET_KEY_LENGTH,EVP_R_INVALID_KEY_LENGTH);
362         return 0;
363         }
364
365 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad)
366         {
367         if (pad) ctx->flags &= ~EVP_CIPH_NO_PADDING;
368         else ctx->flags |= EVP_CIPH_NO_PADDING;
369         return 1;
370         }
371
372 int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
373 {
374         int ret;
375         if(!ctx->cipher) {
376                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_NO_CIPHER_SET);
377                 return 0;
378         }
379
380         if(!ctx->cipher->ctrl) {
381                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_NOT_IMPLEMENTED);
382                 return 0;
383         }
384
385         ret = ctx->cipher->ctrl(ctx, type, arg, ptr);
386         if(ret == -1) {
387                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED);
388                 return 0;
389         }
390         return ret;
391 }