crypto/ofb128.c: make it indent-friendly.
[oweals/openssl.git] / crypto / modes / cfb128.c
1 /* ====================================================================
2  * Copyright (c) 2008 The OpenSSL Project.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer. 
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in
13  *    the documentation and/or other materials provided with the
14  *    distribution.
15  *
16  * 3. All advertising materials mentioning features or use of this
17  *    software must display the following acknowledgment:
18  *    "This product includes software developed by the OpenSSL Project
19  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
20  *
21  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22  *    endorse or promote products derived from this software without
23  *    prior written permission. For written permission, please contact
24  *    openssl-core@openssl.org.
25  *
26  * 5. Products derived from this software may not be called "OpenSSL"
27  *    nor may "OpenSSL" appear in their names without prior written
28  *    permission of the OpenSSL Project.
29  *
30  * 6. Redistributions of any form whatsoever must retain the following
31  *    acknowledgment:
32  *    "This product includes software developed by the OpenSSL Project
33  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
34  *
35  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46  * OF THE POSSIBILITY OF SUCH DAMAGE.
47  * ====================================================================
48  *
49  */
50
51 #include <openssl/crypto.h>
52 #include "modes_lcl.h"
53 #include <string.h>
54
55 #ifndef MODES_DEBUG
56 # ifndef NDEBUG
57 #  define NDEBUG
58 # endif
59 #endif
60 #include <assert.h>
61
62 /* The input and output encrypted as though 128bit cfb mode is being
63  * used.  The extra state information to record how much of the
64  * 128bit block we have used is contained in *num;
65  */
66 void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
67                         size_t len, const void *key,
68                         unsigned char ivec[16], int *num,
69                         int enc, block128_f block)
70 {
71     unsigned int n;
72     size_t l = 0;
73
74     assert(in && out && key && ivec && num);
75
76     n = *num;
77
78     if (enc) {
79 #if !defined(OPENSSL_SMALL_FOOTPRINT)
80         if (16%sizeof(size_t) == 0) {   /* always true actually */
81             do {
82                 while (n && len) {
83                         *(out++) = ivec[n] ^= *(in++);
84                         --len;
85                         n = (n+1) % 16;
86                 }
87 #if defined(STRICT_ALIGNMENT)
88                 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
89                         break;
90 #endif
91                 while (len>=16) {
92                         (*block)(ivec, ivec, key);
93                         for (; n<16; n+=sizeof(size_t)) {
94                                 *(size_t*)(out+n) =
95                                 *(size_t*)(ivec+n) ^= *(size_t*)(in+n);
96                         }
97                         len -= 16;
98                         out += 16;
99                         in  += 16;
100                         n = 0;
101                 }
102                 if (len) {
103                         (*block)(ivec, ivec, key);
104                         while (len--) {
105                                 out[n] = ivec[n] ^= in[n];
106                                 ++n;
107                         }
108                 }
109                 *num = n;
110                 return;
111             } while (0);
112         }
113         /* the rest would be commonly eliminated by x86* compiler */
114 #endif
115         while (l<len) {
116                 if (n == 0) {
117                         (*block)(ivec, ivec, key);
118                 }
119                 out[l] = ivec[n] ^= in[l];
120                 ++l;
121                 n = (n+1) % 16;
122         }
123         *num = n;
124     } else {
125 #if !defined(OPENSSL_SMALL_FOOTPRINT)
126         if (16%sizeof(size_t) == 0) {   /* always true actually */
127             do {
128                 while (n && len) {
129                         unsigned char c;
130                         *(out++) = ivec[n] ^ (c = *(in++)); ivec[n] = c;
131                         --len;
132                         n = (n+1) % 16;
133                 }
134 #if defined(STRICT_ALIGNMENT)
135                 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
136                         break;
137 #endif
138                 while (len>=16) {
139                         (*block)(ivec, ivec, key);
140                         for (; n<16; n+=sizeof(size_t)) {
141                                 size_t t = *(size_t*)(in+n);
142                                 *(size_t*)(out+n) = *(size_t*)(ivec+n) ^ t;
143                                 *(size_t*)(ivec+n) = t;
144                         }
145                         len -= 16;
146                         out += 16;
147                         in  += 16;
148                         n = 0;
149                 }
150                 if (len) {
151                         (*block)(ivec, ivec, key);
152                         while (len--) {
153                                 unsigned char c;
154                                 out[n] = ivec[n] ^ (c = in[n]); ivec[n] = c;
155                                 ++n;
156                         }
157                 }
158                 *num = n;
159                 return;
160             } while (0);
161         }
162         /* the rest would be commonly eliminated by x86* compiler */
163 #endif
164         while (l<len) {
165                 unsigned char c;
166                 if (n == 0) {
167                         (*block)(ivec, ivec, key);
168                 }
169                 out[l] = ivec[n] ^ (c = in[l]); ivec[n] = c;
170                 ++l;
171                 n = (n+1) % 16;
172         }
173         *num=n;
174     }
175 }
176
177 /* This expects a single block of size nbits for both in and out. Note that
178    it corrupts any extra bits in the last byte of out */
179 static void cfbr_encrypt_block(const unsigned char *in,unsigned char *out,
180                             int nbits,const void *key,
181                             unsigned char ivec[16],int enc,
182                             block128_f block)
183 {
184     int n,rem,num;
185     unsigned char ovec[16*2 + 1];  /* +1 because we dererefence (but don't use) one byte off the end */
186
187     if (nbits<=0 || nbits>128) return;
188
189         /* fill in the first half of the new IV with the current IV */
190         memcpy(ovec,ivec,16);
191         /* construct the new IV */
192         (*block)(ivec,ivec,key);
193         num = (nbits+7)/8;
194         if (enc)        /* encrypt the input */
195             for(n=0 ; n < num ; ++n)
196                 out[n] = (ovec[16+n] = in[n] ^ ivec[n]);
197         else            /* decrypt the input */
198             for(n=0 ; n < num ; ++n)
199                 out[n] = (ovec[16+n] = in[n]) ^ ivec[n];
200         /* shift ovec left... */
201         rem = nbits%8;
202         num = nbits/8;
203         if(rem==0)
204             memcpy(ivec,ovec+num,16);
205         else
206             for(n=0 ; n < 16 ; ++n)
207                 ivec[n] = ovec[n+num]<<rem | ovec[n+num+1]>>(8-rem);
208
209     /* it is not necessary to cleanse ovec, since the IV is not secret */
210 }
211
212 /* N.B. This expects the input to be packed, MS bit first */
213 void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out,
214                         size_t bits, const void *key,
215                         unsigned char ivec[16], int *num,
216                         int enc, block128_f block)
217 {
218     size_t n;
219     unsigned char c[1],d[1];
220
221     assert(in && out && key && ivec && num);
222     assert(*num == 0);
223
224     for(n=0 ; n<bits ; ++n)
225         {
226         c[0]=(in[n/8]&(1 << (7-n%8))) ? 0x80 : 0;
227         cfbr_encrypt_block(c,d,1,key,ivec,enc,block);
228         out[n/8]=(out[n/8]&~(1 << (unsigned int)(7-n%8))) |
229                  ((d[0]&0x80) >> (unsigned int)(n%8));
230         }
231 }
232
233 void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out,
234                         size_t length, const void *key,
235                         unsigned char ivec[16], int *num,
236                         int enc, block128_f block)
237 {
238     size_t n;
239
240     assert(in && out && key && ivec && num);
241     assert(*num == 0);
242
243     for(n=0 ; n<length ; ++n)
244         cfbr_encrypt_block(&in[n],&out[n],8,key,ivec,enc,block);
245 }
246