~bibledit/bibledit/client

« back to all changes in this revision

Viewing changes to mbedtls2/xtea.h

  • 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 GCC system_header
 
2
/**
 
3
 * \file xtea.h
 
4
 *
 
5
 * \brief XTEA block cipher (32-bit)
 
6
 */
 
7
/*
 
8
 *  Copyright The Mbed TLS Contributors
 
9
 *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
 
10
 *
 
11
 *  This file is provided under the Apache License 2.0, or the
 
12
 *  GNU General Public License v2.0 or later.
 
13
 *
 
14
 *  **********
 
15
 *  Apache License 2.0:
 
16
 *
 
17
 *  Licensed under the Apache License, Version 2.0 (the "License"); you may
 
18
 *  not use this file except in compliance with the License.
 
19
 *  You may obtain a copy of the License at
 
20
 *
 
21
 *  http://www.apache.org/licenses/LICENSE-2.0
 
22
 *
 
23
 *  Unless required by applicable law or agreed to in writing, software
 
24
 *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
25
 *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
26
 *  See the License for the specific language governing permissions and
 
27
 *  limitations under the License.
 
28
 *
 
29
 *  **********
 
30
 *
 
31
 *  **********
 
32
 *  GNU General Public License v2.0 or later:
 
33
 *
 
34
 *  This program is free software; you can redistribute it and/or modify
 
35
 *  it under the terms of the GNU General Public License as published by
 
36
 *  the Free Software Foundation; either version 2 of the License, or
 
37
 *  (at your option) any later version.
 
38
 *
 
39
 *  This program is distributed in the hope that it will be useful,
 
40
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
41
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
42
 *  GNU General Public License for more details.
 
43
 *
 
44
 *  You should have received a copy of the GNU General Public License along
 
45
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 
46
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
47
 *
 
48
 *  **********
 
49
 */
 
50
#ifndef MBEDTLS_XTEA_H
 
51
#define MBEDTLS_XTEA_H
 
52
 
 
53
#if !defined(MBEDTLS_CONFIG_FILE)
 
54
#include "config.h"
 
55
#else
 
56
#include MBEDTLS_CONFIG_FILE
 
57
#endif
 
58
 
 
59
#include <stddef.h>
 
60
#include <stdint.h>
 
61
 
 
62
#define MBEDTLS_XTEA_ENCRYPT     1
 
63
#define MBEDTLS_XTEA_DECRYPT     0
 
64
 
 
65
#define MBEDTLS_ERR_XTEA_INVALID_INPUT_LENGTH             -0x0028  /**< The data input has an invalid length. */
 
66
 
 
67
/* MBEDTLS_ERR_XTEA_HW_ACCEL_FAILED is deprecated and should not be used. */
 
68
#define MBEDTLS_ERR_XTEA_HW_ACCEL_FAILED                  -0x0029  /**< XTEA hardware accelerator failed. */
 
69
 
 
70
#ifdef __cplusplus
 
71
extern "C" {
 
72
#endif
 
73
 
 
74
#if !defined(MBEDTLS_XTEA_ALT)
 
75
// Regular implementation
 
76
//
 
77
 
 
78
/**
 
79
 * \brief          XTEA context structure
 
80
 */
 
81
typedef struct mbedtls_xtea_context
 
82
{
 
83
    uint32_t k[4];       /*!< key */
 
84
}
 
85
mbedtls_xtea_context;
 
86
 
 
87
#else  /* MBEDTLS_XTEA_ALT */
 
88
#include "xtea_alt.h"
 
89
#endif /* MBEDTLS_XTEA_ALT */
 
90
 
 
91
/**
 
92
 * \brief          Initialize XTEA context
 
93
 *
 
94
 * \param ctx      XTEA context to be initialized
 
95
 */
 
96
void mbedtls_xtea_init( mbedtls_xtea_context *ctx );
 
97
 
 
98
/**
 
99
 * \brief          Clear XTEA context
 
100
 *
 
101
 * \param ctx      XTEA context to be cleared
 
102
 */
 
103
void mbedtls_xtea_free( mbedtls_xtea_context *ctx );
 
104
 
 
105
/**
 
106
 * \brief          XTEA key schedule
 
107
 *
 
108
 * \param ctx      XTEA context to be initialized
 
109
 * \param key      the secret key
 
110
 */
 
111
void mbedtls_xtea_setup( mbedtls_xtea_context *ctx, const unsigned char key[16] );
 
112
 
 
113
/**
 
114
 * \brief          XTEA cipher function
 
115
 *
 
116
 * \param ctx      XTEA context
 
117
 * \param mode     MBEDTLS_XTEA_ENCRYPT or MBEDTLS_XTEA_DECRYPT
 
118
 * \param input    8-byte input block
 
119
 * \param output   8-byte output block
 
120
 *
 
121
 * \return         0 if successful
 
122
 */
 
123
int mbedtls_xtea_crypt_ecb( mbedtls_xtea_context *ctx,
 
124
                    int mode,
 
125
                    const unsigned char input[8],
 
126
                    unsigned char output[8] );
 
127
 
 
128
#if defined(MBEDTLS_CIPHER_MODE_CBC)
 
129
/**
 
130
 * \brief          XTEA CBC cipher function
 
131
 *
 
132
 * \param ctx      XTEA context
 
133
 * \param mode     MBEDTLS_XTEA_ENCRYPT or MBEDTLS_XTEA_DECRYPT
 
134
 * \param length   the length of input, multiple of 8
 
135
 * \param iv       initialization vector for CBC mode
 
136
 * \param input    input block
 
137
 * \param output   output block
 
138
 *
 
139
 * \return         0 if successful,
 
140
 *                 MBEDTLS_ERR_XTEA_INVALID_INPUT_LENGTH if the length % 8 != 0
 
141
 */
 
142
int mbedtls_xtea_crypt_cbc( mbedtls_xtea_context *ctx,
 
143
                    int mode,
 
144
                    size_t length,
 
145
                    unsigned char iv[8],
 
146
                    const unsigned char *input,
 
147
                    unsigned char *output);
 
148
#endif /* MBEDTLS_CIPHER_MODE_CBC */
 
149
 
 
150
#if defined(MBEDTLS_SELF_TEST)
 
151
 
 
152
/**
 
153
 * \brief          Checkup routine
 
154
 *
 
155
 * \return         0 if successful, or 1 if the test failed
 
156
 */
 
157
int mbedtls_xtea_self_test( int verbose );
 
158
 
 
159
#endif /* MBEDTLS_SELF_TEST */
 
160
 
 
161
#ifdef __cplusplus
 
162
}
 
163
#endif
 
164
 
 
165
#endif /* xtea.h */