b685a5e99ecb0c21db3516d325f103ba8de1649e
[oweals/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 <openssl/rand.h>
64 #ifndef OPENSSL_NO_ENGINE
65 #include <openssl/engine.h>
66 #endif
67 #include "evp_locl.h"
68
69 const char EVP_version[]="EVP" OPENSSL_VERSION_PTEXT;
70
71 EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
72         {
73         EVP_CIPHER_CTX *ctx=OPENSSL_malloc(sizeof *ctx);
74         if (ctx)
75                 EVP_CIPHER_CTX_init(ctx);
76         return ctx;
77         }
78
79 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
80              const unsigned char *key, const unsigned char *iv, int enc)
81         {
82         if (cipher)
83                 EVP_CIPHER_CTX_init(ctx);
84         return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc);
85         }
86
87 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
88              const unsigned char *in, int inl)
89         {
90         if (ctx->encrypt)
91                 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
92         else    return EVP_DecryptUpdate(ctx,out,outl,in,inl);
93         }
94
95 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
96         {
97         if (ctx->encrypt)
98                 return EVP_EncryptFinal_ex(ctx,out,outl);
99         else    return EVP_DecryptFinal_ex(ctx,out,outl);
100         }
101
102 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
103         {
104         if (ctx->encrypt)
105                 return EVP_EncryptFinal(ctx,out,outl);
106         else    return EVP_DecryptFinal(ctx,out,outl);
107         }
108
109 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
110              const unsigned char *key, const unsigned char *iv)
111         {
112         return EVP_CipherInit(ctx, cipher, key, iv, 1);
113         }
114
115 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
116                 const unsigned char *key, const unsigned char *iv)
117         {
118         return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
119         }
120
121 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
122              const unsigned char *key, const unsigned char *iv)
123         {
124         return EVP_CipherInit(ctx, cipher, key, iv, 0);
125         }
126
127 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl,
128              const unsigned char *key, const unsigned char *iv)
129         {
130         return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
131         }
132
133 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
134              const unsigned char *in, int inl)
135         {
136         int i,j,bl;
137
138         OPENSSL_assert(inl > 0);
139         if(ctx->buf_len == 0 && (inl&(ctx->block_mask)) == 0)
140                 {
141                 if(ctx->cipher->do_cipher(ctx,out,in,inl))
142                         {
143                         *outl=inl;
144                         return 1;
145                         }
146                 else
147                         {
148                         *outl=0;
149                         return 0;
150                         }
151                 }
152         i=ctx->buf_len;
153         bl=ctx->cipher->block_size;
154         OPENSSL_assert(bl <= (int)sizeof(ctx->buf));
155         if (i != 0)
156                 {
157                 if (i+inl < bl)
158                         {
159                         memcpy(&(ctx->buf[i]),in,inl);
160                         ctx->buf_len+=inl;
161                         *outl=0;
162                         return 1;
163                         }
164                 else
165                         {
166                         j=bl-i;
167                         memcpy(&(ctx->buf[i]),in,j);
168                         if(!ctx->cipher->do_cipher(ctx,out,ctx->buf,bl)) return 0;
169                         inl-=j;
170                         in+=j;
171                         out+=bl;
172                         *outl=bl;
173                         }
174                 }
175         else
176                 *outl = 0;
177         i=inl&(bl-1);
178         inl-=i;
179         if (inl > 0)
180                 {
181                 if(!ctx->cipher->do_cipher(ctx,out,in,inl)) return 0;
182                 *outl+=inl;
183                 }
184
185         if (i != 0)
186                 memcpy(ctx->buf,&(in[inl]),i);
187         ctx->buf_len=i;
188         return 1;
189         }
190
191 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
192         {
193         int ret;
194         ret = EVP_EncryptFinal_ex(ctx, out, outl);
195         return ret;
196         }
197
198 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
199         {
200         int n,ret;
201         unsigned int i, b, bl;
202
203         b=ctx->cipher->block_size;
204         OPENSSL_assert(b <= sizeof ctx->buf);
205         if (b == 1)
206                 {
207                 *outl=0;
208                 return 1;
209                 }
210         bl=ctx->buf_len;
211         if (ctx->flags & EVP_CIPH_NO_PADDING)
212                 {
213                 if(bl)
214                         {
215                         EVPerr(EVP_F_EVP_ENCRYPTFINAL_EX,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
216                         return 0;
217                         }
218                 *outl = 0;
219                 return 1;
220                 }
221
222         n=b-bl;
223         for (i=bl; i<b; i++)
224                 ctx->buf[i]=n;
225         ret=ctx->cipher->do_cipher(ctx,out,ctx->buf,b);
226
227
228         if(ret)
229                 *outl=b;
230
231         return ret;
232         }
233
234 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
235              const unsigned char *in, int inl)
236         {
237         int fix_len;
238         unsigned int b;
239
240         if (inl == 0)
241                 {
242                 *outl=0;
243                 return 1;
244                 }
245
246         if (ctx->flags & EVP_CIPH_NO_PADDING)
247                 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
248
249         b=ctx->cipher->block_size;
250         OPENSSL_assert(b <= sizeof ctx->final);
251
252         if(ctx->final_used)
253                 {
254                 memcpy(out,ctx->final,b);
255                 out+=b;
256                 fix_len = 1;
257                 }
258         else
259                 fix_len = 0;
260
261
262         if(!EVP_EncryptUpdate(ctx,out,outl,in,inl))
263                 return 0;
264
265         /* if we have 'decrypted' a multiple of block size, make sure
266          * we have a copy of this last block */
267         if (b > 1 && !ctx->buf_len)
268                 {
269                 *outl-=b;
270                 ctx->final_used=1;
271                 memcpy(ctx->final,&out[*outl],b);
272                 }
273         else
274                 ctx->final_used = 0;
275
276         if (fix_len)
277                 *outl += b;
278                 
279         return 1;
280         }
281
282 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
283         {
284         int ret;
285         ret = EVP_DecryptFinal_ex(ctx, out, outl);
286         return ret;
287         }
288
289 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
290         {
291         int i,n;
292         unsigned int b;
293
294         *outl=0;
295         b=ctx->cipher->block_size;
296         if (ctx->flags & EVP_CIPH_NO_PADDING)
297                 {
298                 if(ctx->buf_len)
299                         {
300                         EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
301                         return 0;
302                         }
303                 *outl = 0;
304                 return 1;
305                 }
306         if (b > 1)
307                 {
308                 if (ctx->buf_len || !ctx->final_used)
309                         {
310                         EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_WRONG_FINAL_BLOCK_LENGTH);
311                         return(0);
312                         }
313                 OPENSSL_assert(b <= sizeof ctx->final);
314                 n=ctx->final[b-1];
315                 if (n == 0 || n > (int)b)
316                         {
317                         EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_BAD_DECRYPT);
318                         return(0);
319                         }
320                 for (i=0; i<n; i++)
321                         {
322                         if (ctx->final[--b] != n)
323                                 {
324                                 EVPerr(EVP_F_EVP_DECRYPTFINAL_EX,EVP_R_BAD_DECRYPT);
325                                 return(0);
326                                 }
327                         }
328                 n=ctx->cipher->block_size-n;
329                 for (i=0; i<n; i++)
330                         out[i]=ctx->final[i];
331                 *outl=n;
332                 }
333         else
334                 *outl=0;
335         return(1);
336         }
337
338 void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx)
339         {
340         if (ctx)
341                 {
342                 EVP_CIPHER_CTX_cleanup(ctx);
343                 OPENSSL_free(ctx);
344                 }
345         }
346
347 int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *c, int keylen)
348         {
349         if(c->cipher->flags & EVP_CIPH_CUSTOM_KEY_LENGTH) 
350                 return EVP_CIPHER_CTX_ctrl(c, EVP_CTRL_SET_KEY_LENGTH, keylen, NULL);
351         if(c->key_len == keylen) return 1;
352         if((keylen > 0) && (c->cipher->flags & EVP_CIPH_VARIABLE_LENGTH))
353                 {
354                 c->key_len = keylen;
355                 return 1;
356                 }
357         EVPerr(EVP_F_EVP_CIPHER_CTX_SET_KEY_LENGTH,EVP_R_INVALID_KEY_LENGTH);
358         return 0;
359         }
360
361 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad)
362         {
363         if (pad) ctx->flags &= ~EVP_CIPH_NO_PADDING;
364         else ctx->flags |= EVP_CIPH_NO_PADDING;
365         return 1;
366         }
367
368 int EVP_CIPHER_CTX_rand_key(EVP_CIPHER_CTX *ctx, unsigned char *key)
369         {
370         if (ctx->cipher->flags & EVP_CIPH_RAND_KEY)
371                 return EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_RAND_KEY, 0, key);
372         if (RAND_bytes(key, ctx->key_len) <= 0)
373                 return 0;
374         return 1;
375         }
376
377 #ifndef OPENSSL_NO_ENGINE
378
379 #ifdef OPENSSL_FIPS
380
381 static int do_evp_enc_engine_full(EVP_CIPHER_CTX *ctx, const EVP_CIPHER **pcipher, ENGINE *impl)
382         {
383         if(impl)
384                 {
385                 if (!ENGINE_init(impl))
386                         {
387                         EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_INITIALIZATION_ERROR);
388                         return 0;
389                         }
390                 }
391         else
392                 /* Ask if an ENGINE is reserved for this job */
393                 impl = ENGINE_get_cipher_engine((*pcipher)->nid);
394         if(impl)
395                 {
396                 /* There's an ENGINE for this job ... (apparently) */
397                 const EVP_CIPHER *c = ENGINE_get_cipher(impl, (*pcipher)->nid);
398                 if(!c)
399                         {
400                         /* One positive side-effect of US's export
401                          * control history, is that we should at least
402                          * be able to avoid using US mispellings of
403                          * "initialisation"? */
404                         EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_INITIALIZATION_ERROR);
405                         return 0;
406                         }
407                 /* We'll use the ENGINE's private cipher definition */
408                 *pcipher = c;
409                 /* Store the ENGINE functional reference so we know
410                  * 'cipher' came from an ENGINE and we need to release
411                  * it when done. */
412                 ctx->engine = impl;
413                 }
414         else
415                 ctx->engine = NULL;
416         return 1;
417         }
418
419 void int_EVP_CIPHER_init_engine_callbacks(void)
420         {
421         int_EVP_CIPHER_set_engine_callbacks(
422                 ENGINE_finish, do_evp_enc_engine_full);
423         }
424
425 #endif
426
427 #endif