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