Add RC4 support to OpenBSD.
[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              const unsigned char *key, const unsigned char *iv, int enc)
77         {
78         if(enc && (enc != -1)) enc = 1;
79         if (cipher)
80                 {
81                 ctx->cipher=cipher;
82                 ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size);
83                 ctx->key_len = cipher->key_len;
84                 ctx->flags = 0;
85                 if(ctx->cipher->flags & EVP_CIPH_CTRL_INIT) {
86                         if(!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_INIT, 0, NULL)) {
87                                 EVPerr(EVP_F_EVP_CIPHERINIT, EVP_R_INITIALIZATION_ERROR);
88                                 return 0;
89                         }
90                 }
91         } else if(!ctx->cipher) {
92                 EVPerr(EVP_F_EVP_CIPHERINIT, EVP_R_NO_CIPHER_SET);
93                 return 0;
94         }
95
96         /* we assume block size is a power of 2 in *cryptUpdate */
97         assert(ctx->cipher->block_size == 1
98                || ctx->cipher->block_size == 8
99                || ctx->cipher->block_size == 16);
100
101         if(!(EVP_CIPHER_CTX_flags(ctx) & EVP_CIPH_CUSTOM_IV)) {
102                 switch(EVP_CIPHER_CTX_mode(ctx)) {
103
104                         case EVP_CIPH_STREAM_CIPHER:
105                         case EVP_CIPH_ECB_MODE:
106                         break;
107
108                         case EVP_CIPH_CFB_MODE:
109                         case EVP_CIPH_OFB_MODE:
110
111                         ctx->num = 0;
112
113                         case EVP_CIPH_CBC_MODE:
114
115                         if(iv) memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
116                         memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
117                         break;
118
119                         default:
120                         return 0;
121                         break;
122                 }
123         }
124
125         if(key || (ctx->cipher->flags & EVP_CIPH_ALWAYS_CALL_INIT)) {
126                 if(!ctx->cipher->init(ctx,key,iv,enc)) return 0;
127         }
128         if(enc != -1) ctx->encrypt=enc;
129         ctx->buf_len=0;
130         ctx->final_used=0;
131         ctx->block_mask=ctx->cipher->block_size-1;
132         return 1;
133         }
134
135 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
136              const unsigned char *in, int inl)
137         {
138         if (ctx->encrypt)
139                 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
140         else    return EVP_DecryptUpdate(ctx,out,outl,in,inl);
141         }
142
143 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
144         {
145         if (ctx->encrypt)
146                 return EVP_EncryptFinal(ctx,out,outl);
147         else    return(EVP_DecryptFinal(ctx,out,outl));
148         }
149
150 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
151              const unsigned char *key, const unsigned char *iv)
152         {
153         return EVP_CipherInit(ctx, cipher, key, iv, 1);
154         }
155
156 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
157              const unsigned char *key, const unsigned char *iv)
158         {
159         return EVP_CipherInit(ctx, cipher, key, iv, 0);
160         }
161
162 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
163              const unsigned char *in, int inl)
164         {
165         int i,j,bl;
166
167         if(ctx->buf_len == 0 && (inl&(ctx->block_mask)) == 0)
168                 {
169                 if(ctx->cipher->do_cipher(ctx,out,in,inl))
170                         {
171                         *outl=inl;
172                         return 1;
173                         }
174                 else
175                         {
176                         *outl=0;
177                         return 0;
178                         }
179                 }
180         i=ctx->buf_len;
181         bl=ctx->cipher->block_size;
182         if (i != 0)
183                 {
184                 if (i+inl < bl)
185                         {
186                         memcpy(&(ctx->buf[i]),in,inl);
187                         ctx->buf_len+=inl;
188                         *outl=0;
189                         return 1;
190                         }
191                 else
192                         {
193                         j=bl-i;
194                         memcpy(&(ctx->buf[i]),in,j);
195                         if(!ctx->cipher->do_cipher(ctx,out,ctx->buf,bl)) return 0;
196                         inl-=j;
197                         in+=j;
198                         out+=bl;
199                         *outl=bl;
200                         }
201                 }
202         else
203                 *outl = 0;
204         i=inl&(bl-1);
205         inl-=i;
206         if (inl > 0)
207                 {
208                 if(!ctx->cipher->do_cipher(ctx,out,in,inl)) return 0;
209                 *outl+=inl;
210                 }
211
212         if (i != 0)
213                 memcpy(ctx->buf,&(in[inl]),i);
214         ctx->buf_len=i;
215         return 1;
216         }
217
218 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
219         {
220         int i,n,b,bl,ret;
221
222         b=ctx->cipher->block_size;
223         if (b == 1)
224                 {
225                 EVP_CIPHER_CTX_cleanup(ctx);
226                 *outl=0;
227                 return 1;
228                 }
229         bl=ctx->buf_len;
230         if (ctx->flags & EVP_CIPH_NO_PADDING)
231                 {
232                 EVP_CIPHER_CTX_cleanup(ctx);
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
242         n=b-bl;
243         for (i=bl; i<b; i++)
244                 ctx->buf[i]=n;
245         ret=ctx->cipher->do_cipher(ctx,out,ctx->buf,b);
246
247         EVP_CIPHER_CTX_cleanup(ctx);
248
249         if(ret)
250                 *outl=b;
251
252         return ret;
253         }
254
255 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
256              const unsigned char *in, int inl)
257         {
258         int b;
259
260         if (inl == 0)
261                 {
262                 *outl=0;
263                 return 1;
264                 }
265
266         if (ctx->flags & EVP_CIPH_NO_PADDING)
267                 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
268
269         b=ctx->cipher->block_size;
270         if(ctx->final_used)
271                 {
272                 memcpy(out,ctx->final,b);
273                 out+=b;
274                 }
275                 
276         if(!EVP_EncryptUpdate(ctx,out,outl,in,inl))
277                 return 0;
278
279         /* if we have 'decrypted' a multiple of block size, make sure
280          * we have a copy of this last block */
281         if (b > 1 && !ctx->buf_len)
282                 {
283                 if(!ctx->final_used)
284                         {
285                         *outl-=b;
286                         ctx->final_used=1;
287                         }
288                 memcpy(ctx->final,&out[*outl],b);
289                 }
290         else if(ctx->final_used)
291                 {
292                 ctx->final_used=0;
293                 *outl+=b;
294                 }
295         return 1;
296         }
297
298 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
299         {
300         int i,b;
301         int n;
302
303         *outl=0;
304         b=ctx->cipher->block_size;
305         if (ctx->flags & EVP_CIPH_NO_PADDING)
306                 {
307                 EVP_CIPHER_CTX_cleanup(ctx);
308                 if(ctx->buf_len)
309                         {
310                         EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
311                         return 0;
312                         }
313                 *outl = 0;
314                 return 1;
315                 }
316         if (b > 1)
317                 {
318                 if (ctx->buf_len || !ctx->final_used)
319                         {
320                         EVP_CIPHER_CTX_cleanup(ctx);
321                         EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_WRONG_FINAL_BLOCK_LENGTH);
322                         return(0);
323                         }
324                 n=ctx->final[b-1];
325                 if (n > b)
326                         {
327                         EVP_CIPHER_CTX_cleanup(ctx);
328                         EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT);
329                         return(0);
330                         }
331                 for (i=0; i<n; i++)
332                         {
333                         if (ctx->final[--b] != n)
334                                 {
335                                 EVP_CIPHER_CTX_cleanup(ctx);
336                                 EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT);
337                                 return(0);
338                                 }
339                         }
340                 n=ctx->cipher->block_size-n;
341                 for (i=0; i<n; i++)
342                         out[i]=ctx->final[i];
343                 *outl=n;
344                 }
345         else
346                 *outl=0;
347         EVP_CIPHER_CTX_cleanup(ctx);
348         return(1);
349         }
350
351 int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *c)
352         {
353         if ((c->cipher != NULL) && (c->cipher->cleanup != NULL))
354                 {
355                 if(!c->cipher->cleanup(c)) return 0;
356                 }
357         OPENSSL_free(c->cipher_data);
358         memset(c,0,sizeof(EVP_CIPHER_CTX));
359         return 1;
360         }
361
362 int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *c, int keylen)
363         {
364         if(c->cipher->flags & EVP_CIPH_CUSTOM_KEY_LENGTH) 
365                 return EVP_CIPHER_CTX_ctrl(c, EVP_CTRL_SET_KEY_LENGTH, keylen, NULL);
366         if(c->key_len == keylen) return 1;
367         if((keylen > 0) && (c->cipher->flags & EVP_CIPH_VARIABLE_LENGTH))
368                 {
369                 c->key_len = keylen;
370                 return 1;
371                 }
372         EVPerr(EVP_F_EVP_CIPHER_CTX_SET_KEY_LENGTH,EVP_R_INVALID_KEY_LENGTH);
373         return 0;
374         }
375
376 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad)
377         {
378         if (pad) ctx->flags &= ~EVP_CIPH_NO_PADDING;
379         else ctx->flags |= EVP_CIPH_NO_PADDING;
380         return 1;
381         }
382
383 int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
384 {
385         int ret;
386         if(!ctx->cipher) {
387                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_NO_CIPHER_SET);
388                 return 0;
389         }
390
391         if(!ctx->cipher->ctrl) {
392                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_NOT_IMPLEMENTED);
393                 return 0;
394         }
395
396         ret = ctx->cipher->ctrl(ctx, type, arg, ptr);
397         if(ret == -1) {
398                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED);
399                 return 0;
400         }
401         return ret;
402 }