~bibledit/bibledit/client

« back to all changes in this revision

Viewing changes to mbedtls_2.x/xtea.c

  • Committer: Teus Benschop
  • Date: 2024-08-17 17:08:44 UTC
  • Revision ID: teusjannette@gmail.com-20240817170844-0qf789ywtms3hyz7
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#pragma clang diagnostic ignored "-Wunknown-warning-option"
2
 
#pragma clang diagnostic ignored "-Wimplicit-int-conversion"
3
 
#pragma clang diagnostic ignored "-Wsign-conversion"
4
 
 
5
 
#pragma GCC diagnostic ignored "-Wconversion"
6
 
 
7
 
#pragma clang diagnostic ignored "-Wimplicit-int-conversion"
8
 
#pragma clang diagnostic ignored "-Wsign-conversion"
9
 
 
10
 
#pragma GCC diagnostic ignored "-Wconversion"
11
 
 
12
 
#pragma clang diagnostic ignored "-Wimplicit-int-conversion"
13
 
#pragma clang diagnostic ignored "-Wsign-conversion"
14
 
/*
15
 
 *  An 32-bit implementation of the XTEA algorithm
16
 
 *
17
 
 *  Copyright The Mbed TLS Contributors
18
 
 *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
19
 
 *
20
 
 *  This file is provided under the Apache License 2.0, or the
21
 
 *  GNU General Public License v2.0 or later.
22
 
 *
23
 
 *  **********
24
 
 *  Apache License 2.0:
25
 
 *
26
 
 *  Licensed under the Apache License, Version 2.0 (the "License"); you may
27
 
 *  not use this file except in compliance with the License.
28
 
 *  You may obtain a copy of the License at
29
 
 *
30
 
 *  http://www.apache.org/licenses/LICENSE-2.0
31
 
 *
32
 
 *  Unless required by applicable law or agreed to in writing, software
33
 
 *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
34
 
 *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35
 
 *  See the License for the specific language governing permissions and
36
 
 *  limitations under the License.
37
 
 *
38
 
 *  **********
39
 
 *
40
 
 *  **********
41
 
 *  GNU General Public License v2.0 or later:
42
 
 *
43
 
 *  This program is free software; you can redistribute it and/or modify
44
 
 *  it under the terms of the GNU General Public License as published by
45
 
 *  the Free Software Foundation; either version 2 of the License, or
46
 
 *  (at your option) any later version.
47
 
 *
48
 
 *  This program is distributed in the hope that it will be useful,
49
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
50
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
51
 
 *  GNU General Public License for more details.
52
 
 *
53
 
 *  You should have received a copy of the GNU General Public License along
54
 
 *  with this program; if not, write to the Free Software Foundation, Inc.,
55
 
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
56
 
 *
57
 
 *  **********
58
 
 */
59
 
 
60
 
#if !defined(MBEDTLS_CONFIG_FILE)
61
 
#include "mbedtls/config.h"
62
 
#else
63
 
#include MBEDTLS_CONFIG_FILE
64
 
#endif
65
 
 
66
 
#if defined(MBEDTLS_XTEA_C)
67
 
 
68
 
#include "mbedtls/xtea.h"
69
 
#include "mbedtls/platform_util.h"
70
 
 
71
 
#include <string.h>
72
 
 
73
 
#if defined(MBEDTLS_SELF_TEST)
74
 
#if defined(MBEDTLS_PLATFORM_C)
75
 
#include "mbedtls/platform.h"
76
 
#else
77
 
#include <stdio.h>
78
 
#define mbedtls_printf printf
79
 
#endif /* MBEDTLS_PLATFORM_C */
80
 
#endif /* MBEDTLS_SELF_TEST */
81
 
 
82
 
#if !defined(MBEDTLS_XTEA_ALT)
83
 
 
84
 
/*
85
 
 * 32-bit integer manipulation macros (big endian)
86
 
 */
87
 
#ifndef GET_UINT32_BE
88
 
#define GET_UINT32_BE(n,b,i)                            \
89
 
{                                                       \
90
 
    (n) = ( (uint32_t) (b)[(i)    ] << 24 )             \
91
 
        | ( (uint32_t) (b)[(i) + 1] << 16 )             \
92
 
        | ( (uint32_t) (b)[(i) + 2] <<  8 )             \
93
 
        | ( (uint32_t) (b)[(i) + 3]       );            \
94
 
}
95
 
#endif
96
 
 
97
 
#ifndef PUT_UINT32_BE
98
 
#define PUT_UINT32_BE(n,b,i)                            \
99
 
{                                                       \
100
 
    (b)[(i)    ] = (unsigned char) ( (n) >> 24 );       \
101
 
    (b)[(i) + 1] = (unsigned char) ( (n) >> 16 );       \
102
 
    (b)[(i) + 2] = (unsigned char) ( (n) >>  8 );       \
103
 
    (b)[(i) + 3] = (unsigned char) ( (n)       );       \
104
 
}
105
 
#endif
106
 
 
107
 
void mbedtls_xtea_init( mbedtls_xtea_context *ctx )
108
 
{
109
 
    memset( ctx, 0, sizeof( mbedtls_xtea_context ) );
110
 
}
111
 
 
112
 
void mbedtls_xtea_free( mbedtls_xtea_context *ctx )
113
 
{
114
 
    if( ctx == NULL )
115
 
        return;
116
 
 
117
 
    mbedtls_platform_zeroize( ctx, sizeof( mbedtls_xtea_context ) );
118
 
}
119
 
 
120
 
/*
121
 
 * XTEA key schedule
122
 
 */
123
 
void mbedtls_xtea_setup( mbedtls_xtea_context *ctx, const unsigned char key[16] )
124
 
{
125
 
    int i;
126
 
 
127
 
    memset( ctx, 0, sizeof(mbedtls_xtea_context) );
128
 
 
129
 
    for( i = 0; i < 4; i++ )
130
 
    {
131
 
        GET_UINT32_BE( ctx->k[i], key, i << 2 );
132
 
    }
133
 
}
134
 
 
135
 
/*
136
 
 * XTEA encrypt function
137
 
 */
138
 
int mbedtls_xtea_crypt_ecb( mbedtls_xtea_context *ctx, int mode,
139
 
                    const unsigned char input[8], unsigned char output[8])
140
 
{
141
 
    uint32_t *k, v0, v1, i;
142
 
 
143
 
    k = ctx->k;
144
 
 
145
 
    GET_UINT32_BE( v0, input, 0 );
146
 
    GET_UINT32_BE( v1, input, 4 );
147
 
 
148
 
    if( mode == MBEDTLS_XTEA_ENCRYPT )
149
 
    {
150
 
        uint32_t sum = 0, delta = 0x9E3779B9;
151
 
 
152
 
        for( i = 0; i < 32; i++ )
153
 
        {
154
 
            v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + k[sum & 3]);
155
 
            sum += delta;
156
 
            v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + k[(sum>>11) & 3]);
157
 
        }
158
 
    }
159
 
    else /* MBEDTLS_XTEA_DECRYPT */
160
 
    {
161
 
        uint32_t delta = 0x9E3779B9, sum = delta * 32;
162
 
 
163
 
        for( i = 0; i < 32; i++ )
164
 
        {
165
 
            v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + k[(sum>>11) & 3]);
166
 
            sum -= delta;
167
 
            v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + k[sum & 3]);
168
 
        }
169
 
    }
170
 
 
171
 
    PUT_UINT32_BE( v0, output, 0 );
172
 
    PUT_UINT32_BE( v1, output, 4 );
173
 
 
174
 
    return( 0 );
175
 
}
176
 
 
177
 
#if defined(MBEDTLS_CIPHER_MODE_CBC)
178
 
/*
179
 
 * XTEA-CBC buffer encryption/decryption
180
 
 */
181
 
int mbedtls_xtea_crypt_cbc( mbedtls_xtea_context *ctx, int mode, size_t length,
182
 
                    unsigned char iv[8], const unsigned char *input,
183
 
                    unsigned char *output)
184
 
{
185
 
    int i;
186
 
    unsigned char temp[8];
187
 
 
188
 
    if( length % 8 )
189
 
        return( MBEDTLS_ERR_XTEA_INVALID_INPUT_LENGTH );
190
 
 
191
 
    if( mode == MBEDTLS_XTEA_DECRYPT )
192
 
    {
193
 
        while( length > 0 )
194
 
        {
195
 
            memcpy( temp, input, 8 );
196
 
            mbedtls_xtea_crypt_ecb( ctx, mode, input, output );
197
 
 
198
 
            for( i = 0; i < 8; i++ )
199
 
                output[i] = (unsigned char)( output[i] ^ iv[i] );
200
 
 
201
 
            memcpy( iv, temp, 8 );
202
 
 
203
 
            input  += 8;
204
 
            output += 8;
205
 
            length -= 8;
206
 
        }
207
 
    }
208
 
    else
209
 
    {
210
 
        while( length > 0 )
211
 
        {
212
 
            for( i = 0; i < 8; i++ )
213
 
                output[i] = (unsigned char)( input[i] ^ iv[i] );
214
 
 
215
 
            mbedtls_xtea_crypt_ecb( ctx, mode, output, output );
216
 
            memcpy( iv, output, 8 );
217
 
 
218
 
            input  += 8;
219
 
            output += 8;
220
 
            length -= 8;
221
 
        }
222
 
    }
223
 
 
224
 
    return( 0 );
225
 
}
226
 
#endif /* MBEDTLS_CIPHER_MODE_CBC */
227
 
#endif /* !MBEDTLS_XTEA_ALT */
228
 
 
229
 
#if defined(MBEDTLS_SELF_TEST)
230
 
 
231
 
/*
232
 
 * XTEA tests vectors (non-official)
233
 
 */
234
 
 
235
 
static const unsigned char xtea_test_key[6][16] =
236
 
{
237
 
   { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
238
 
     0x0c, 0x0d, 0x0e, 0x0f },
239
 
   { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
240
 
     0x0c, 0x0d, 0x0e, 0x0f },
241
 
   { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
242
 
     0x0c, 0x0d, 0x0e, 0x0f },
243
 
   { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
244
 
     0x00, 0x00, 0x00, 0x00 },
245
 
   { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
246
 
     0x00, 0x00, 0x00, 0x00 },
247
 
   { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
248
 
     0x00, 0x00, 0x00, 0x00 }
249
 
};
250
 
 
251
 
static const unsigned char xtea_test_pt[6][8] =
252
 
{
253
 
    { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
254
 
    { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
255
 
    { 0x5a, 0x5b, 0x6e, 0x27, 0x89, 0x48, 0xd7, 0x7f },
256
 
    { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
257
 
    { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
258
 
    { 0x70, 0xe1, 0x22, 0x5d, 0x6e, 0x4e, 0x76, 0x55 }
259
 
};
260
 
 
261
 
static const unsigned char xtea_test_ct[6][8] =
262
 
{
263
 
    { 0x49, 0x7d, 0xf3, 0xd0, 0x72, 0x61, 0x2c, 0xb5 },
264
 
    { 0xe7, 0x8f, 0x2d, 0x13, 0x74, 0x43, 0x41, 0xd8 },
265
 
    { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
266
 
    { 0xa0, 0x39, 0x05, 0x89, 0xf8, 0xb8, 0xef, 0xa5 },
267
 
    { 0xed, 0x23, 0x37, 0x5a, 0x82, 0x1a, 0x8c, 0x2d },
268
 
    { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 }
269
 
};
270
 
 
271
 
/*
272
 
 * Checkup routine
273
 
 */
274
 
int mbedtls_xtea_self_test( int verbose )
275
 
{
276
 
    int i, ret = 0;
277
 
    unsigned char buf[8];
278
 
    mbedtls_xtea_context ctx;
279
 
 
280
 
    mbedtls_xtea_init( &ctx );
281
 
    for( i = 0; i < 6; i++ )
282
 
    {
283
 
        if( verbose != 0 )
284
 
            mbedtls_printf( "  XTEA test #%d: ", i + 1 );
285
 
 
286
 
        memcpy( buf, xtea_test_pt[i], 8 );
287
 
 
288
 
        mbedtls_xtea_setup( &ctx, xtea_test_key[i] );
289
 
        mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_ENCRYPT, buf, buf );
290
 
 
291
 
        if( memcmp( buf, xtea_test_ct[i], 8 ) != 0 )
292
 
        {
293
 
            if( verbose != 0 )
294
 
                mbedtls_printf( "failed\n" );
295
 
 
296
 
            ret = 1;
297
 
            goto exit;
298
 
        }
299
 
 
300
 
        if( verbose != 0 )
301
 
            mbedtls_printf( "passed\n" );
302
 
    }
303
 
 
304
 
    if( verbose != 0 )
305
 
        mbedtls_printf( "\n" );
306
 
 
307
 
exit:
308
 
    mbedtls_xtea_free( &ctx );
309
 
 
310
 
    return( ret );
311
 
}
312
 
 
313
 
#endif /* MBEDTLS_SELF_TEST */
314
 
 
315
 
#endif /* MBEDTLS_XTEA_C */