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