add fips/Makefile
[openssl.git] / fips / utl / fips_enc.c
1 /* fipe/evp/fips_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 <string.h>
61 #include <openssl/evp.h>
62 #include <openssl/err.h>
63 #include <openssl/rand.h>
64
65 void FIPS_cipher_ctx_init(EVP_CIPHER_CTX *ctx)
66         {
67         memset(ctx,0,sizeof(EVP_CIPHER_CTX));
68         /* ctx->cipher=NULL; */
69         }
70
71 EVP_CIPHER_CTX *FIPS_cipher_ctx_new(void)
72         {
73         EVP_CIPHER_CTX *ctx=OPENSSL_malloc(sizeof *ctx);
74         if (ctx)
75                 FIPS_cipher_ctx_init(ctx);
76         return ctx;
77         }
78
79 int FIPS_cipherinit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
80              const unsigned char *key, const unsigned char *iv, int enc)
81         {
82         if (enc == -1)
83                 enc = ctx->encrypt;
84         else
85                 {
86                 if (enc)
87                         enc = 1;
88                 ctx->encrypt = enc;
89                 }
90         if (cipher)
91                 {
92                 /* Ensure a context left lying around from last time is cleared
93                  * (the previous check attempted to avoid this if the same
94                  * ENGINE and EVP_CIPHER could be used). */
95                 FIPS_cipher_ctx_cleanup(ctx);
96
97                 /* Restore encrypt field: it is zeroed by cleanup */
98                 ctx->encrypt = enc;
99
100                 ctx->cipher=cipher;
101                 if (ctx->cipher->ctx_size)
102                         {
103                         ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size);
104                         if (!ctx->cipher_data)
105                                 {
106                                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, ERR_R_MALLOC_FAILURE);
107                                 return 0;
108                                 }
109                         }
110                 else
111                         {
112                         ctx->cipher_data = NULL;
113                         }
114                 ctx->key_len = cipher->key_len;
115                 ctx->flags = 0;
116                 if(ctx->cipher->flags & EVP_CIPH_CTRL_INIT)
117                         {
118                         if(!FIPS_cipher_ctx_ctrl(ctx, EVP_CTRL_INIT, 0, NULL))
119                                 {
120                                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_INITIALIZATION_ERROR);
121                                 return 0;
122                                 }
123                         }
124                 }
125         else if(!ctx->cipher)
126                 {
127                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, EVP_R_NO_CIPHER_SET);
128                 return 0;
129                 }
130         /* we assume block size is a power of 2 in *cryptUpdate */
131         OPENSSL_assert(ctx->cipher->block_size == 1
132             || ctx->cipher->block_size == 8
133             || ctx->cipher->block_size == 16);
134
135         if(!(M_EVP_CIPHER_CTX_flags(ctx) & EVP_CIPH_CUSTOM_IV)) {
136                 switch(M_EVP_CIPHER_CTX_mode(ctx)) {
137
138                         case EVP_CIPH_STREAM_CIPHER:
139                         case EVP_CIPH_ECB_MODE:
140                         break;
141
142                         case EVP_CIPH_CFB_MODE:
143                         case EVP_CIPH_OFB_MODE:
144
145                         ctx->num = 0;
146                         /* fall-through */
147
148                         case EVP_CIPH_CBC_MODE:
149
150                         OPENSSL_assert(M_EVP_CIPHER_CTX_iv_length(ctx) <=
151                                         (int)sizeof(ctx->iv));
152                         if(iv) memcpy(ctx->oiv, iv, M_EVP_CIPHER_CTX_iv_length(ctx));
153                         memcpy(ctx->iv, ctx->oiv, M_EVP_CIPHER_CTX_iv_length(ctx));
154                         break;
155
156                         case EVP_CIPH_CTR_MODE:
157                         /* Don't reuse IV for CTR mode */
158                         if(iv)
159                                 memcpy(ctx->iv, iv, M_EVP_CIPHER_CTX_iv_length(ctx));
160                         break;
161
162                         default:
163                         return 0;
164                         break;
165                 }
166         }
167
168         if(key || (ctx->cipher->flags & EVP_CIPH_ALWAYS_CALL_INIT)) {
169                 if(!ctx->cipher->init(ctx,key,iv,enc)) return 0;
170         }
171         ctx->buf_len=0;
172         ctx->final_used=0;
173         ctx->block_mask=ctx->cipher->block_size-1;
174         return 1;
175         }
176
177 void FIPS_cipher_ctx_free(EVP_CIPHER_CTX *ctx)
178         {
179         if (ctx)
180                 {
181                 FIPS_cipher_ctx_cleanup(ctx);
182                 OPENSSL_free(ctx);
183                 }
184         }
185
186 int FIPS_cipher_ctx_cleanup(EVP_CIPHER_CTX *c)
187         {
188         if (c->cipher != NULL)
189                 {
190                 if(c->cipher->cleanup && !c->cipher->cleanup(c))
191                         return 0;
192                 /* Cleanse cipher context data */
193                 if (c->cipher_data)
194                         OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size);
195                 }
196         if (c->cipher_data)
197                 OPENSSL_free(c->cipher_data);
198         memset(c,0,sizeof(EVP_CIPHER_CTX));
199         return 1;
200         }
201
202 int FIPS_cipher_ctx_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
203 {
204         int ret;
205         if(!ctx->cipher) {
206                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_NO_CIPHER_SET);
207                 return 0;
208         }
209
210         if(!ctx->cipher->ctrl) {
211                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_NOT_IMPLEMENTED);
212                 return 0;
213         }
214
215         ret = ctx->cipher->ctrl(ctx, type, arg, ptr);
216         if(ret == -1) {
217                 EVPerr(EVP_F_EVP_CIPHER_CTX_CTRL, EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED);
218                 return 0;
219         }
220         return ret;
221 }
222
223
224 int FIPS_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
225                         const unsigned char *in, unsigned int inl)
226         {
227         return ctx->cipher->do_cipher(ctx,out,in,inl);
228         }