blob: 29b96dbb2cbd24f1df29ac35764e227377c305e9 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file des.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +00004 * \brief DES block cipher
Hanno Beckerbbca8c52017-09-25 14:53:51 +01005 *
6 * \warning DES is considered a weak cipher and its use constitutes a
7 * security risk. We recommend considering stronger ciphers
8 * instead.
Darryl Greena40a1012018-01-05 15:33:17 +00009 */
10/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020011 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020012 * SPDX-License-Identifier: Apache-2.0
13 *
14 * Licensed under the Apache License, Version 2.0 (the "License"); you may
15 * not use this file except in compliance with the License.
16 * You may obtain a copy of the License at
17 *
18 * http://www.apache.org/licenses/LICENSE-2.0
19 *
20 * Unless required by applicable law or agreed to in writing, software
21 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
22 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 * See the License for the specific language governing permissions and
24 * limitations under the License.
Paul Bakkerb96f1542010-07-18 20:36:00 +000025 *
Paul Bakker5121ce52009-01-03 21:22:43 +000026 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020027#ifndef MBEDTLS_DES_H
28#define MBEDTLS_DES_H
Paul Bakker5121ce52009-01-03 21:22:43 +000029
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010031#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020032#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020033#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020034#endif
Gilles Peskine7b8571f2021-07-07 21:02:36 +020035#include "mbedtls/platform_util.h"
Paul Bakker90995b52013-06-24 19:20:35 +020036
Rich Evans00ab4702015-02-06 13:43:58 +000037#include <stddef.h>
Manuel Pégourié-Gonnardab229102015-04-15 11:53:16 +020038#include <stdint.h>
Paul Bakker5c2364c2012-10-01 14:41:15 +000039
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040#define MBEDTLS_DES_ENCRYPT 1
41#define MBEDTLS_DES_DECRYPT 0
Paul Bakker5121ce52009-01-03 21:22:43 +000042
Gilles Peskinea3974432021-07-26 18:48:10 +020043/** The data input has an invalid length. */
44#define MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH -0x0032
Ron Eldor9924bdc2018-10-04 10:59:13 +030045
46/* MBEDTLS_ERR_DES_HW_ACCEL_FAILED is deprecated and should not be used. */
Gilles Peskinea3974432021-07-26 18:48:10 +020047/** DES hardware accelerator failed. */
48#define MBEDTLS_ERR_DES_HW_ACCEL_FAILED -0x0033
Paul Bakkerf3ccc682010-03-18 21:21:02 +000049
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020050#define MBEDTLS_DES_KEY_SIZE 8
Paul Bakker1f87fb62011-01-15 17:32:24 +000051
Paul Bakker407a0da2013-06-27 14:29:21 +020052#ifdef __cplusplus
53extern "C" {
54#endif
55
Ron Eldorb2aacec2017-05-18 16:53:08 +030056#if !defined(MBEDTLS_DES_ALT)
57// Regular implementation
58//
59
Paul Bakker5121ce52009-01-03 21:22:43 +000060/**
61 * \brief DES context structure
Hanno Beckerbbca8c52017-09-25 14:53:51 +010062 *
63 * \warning DES is considered a weak cipher and its use constitutes a
64 * security risk. We recommend considering stronger ciphers
65 * instead.
Paul Bakker5121ce52009-01-03 21:22:43 +000066 */
Dawid Drozd428cc522018-07-24 10:02:47 +020067typedef struct mbedtls_des_context
Paul Bakker5121ce52009-01-03 21:22:43 +000068{
Paul Bakker5c2364c2012-10-01 14:41:15 +000069 uint32_t sk[32]; /*!< DES subkeys */
Paul Bakker5121ce52009-01-03 21:22:43 +000070}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020071mbedtls_des_context;
Paul Bakker5121ce52009-01-03 21:22:43 +000072
73/**
74 * \brief Triple-DES context structure
75 */
Dawid Drozd428cc522018-07-24 10:02:47 +020076typedef struct mbedtls_des3_context
Paul Bakker5121ce52009-01-03 21:22:43 +000077{
Paul Bakker5c2364c2012-10-01 14:41:15 +000078 uint32_t sk[96]; /*!< 3DES subkeys */
Paul Bakker5121ce52009-01-03 21:22:43 +000079}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080mbedtls_des3_context;
Paul Bakker5121ce52009-01-03 21:22:43 +000081
Ron Eldor05d0e512018-04-16 17:40:04 +030082#else /* MBEDTLS_DES_ALT */
83#include "des_alt.h"
84#endif /* MBEDTLS_DES_ALT */
85
Paul Bakker5121ce52009-01-03 21:22:43 +000086/**
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020087 * \brief Initialize DES context
88 *
89 * \param ctx DES context to be initialized
Hanno Beckerbbca8c52017-09-25 14:53:51 +010090 *
91 * \warning DES is considered a weak cipher and its use constitutes a
92 * security risk. We recommend considering stronger ciphers
93 * instead.
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020094 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020095void mbedtls_des_init( mbedtls_des_context *ctx );
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020096
97/**
98 * \brief Clear DES context
99 *
100 * \param ctx DES context to be cleared
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100101 *
102 * \warning DES is considered a weak cipher and its use constitutes a
103 * security risk. We recommend considering stronger ciphers
104 * instead.
Paul Bakkerc7ea99a2014-06-18 11:12:03 +0200105 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200106void mbedtls_des_free( mbedtls_des_context *ctx );
Paul Bakkerc7ea99a2014-06-18 11:12:03 +0200107
108/**
109 * \brief Initialize Triple-DES context
110 *
111 * \param ctx DES3 context to be initialized
112 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200113void mbedtls_des3_init( mbedtls_des3_context *ctx );
Paul Bakkerc7ea99a2014-06-18 11:12:03 +0200114
115/**
116 * \brief Clear Triple-DES context
117 *
118 * \param ctx DES3 context to be cleared
119 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200120void mbedtls_des3_free( mbedtls_des3_context *ctx );
Paul Bakkerc7ea99a2014-06-18 11:12:03 +0200121
122/**
Paul Bakker1f87fb62011-01-15 17:32:24 +0000123 * \brief Set key parity on the given key to odd.
124 *
125 * DES keys are 56 bits long, but each byte is padded with
126 * a parity bit to allow verification.
127 *
128 * \param key 8-byte secret key
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100129 *
130 * \warning DES is considered a weak cipher and its use constitutes a
131 * security risk. We recommend considering stronger ciphers
132 * instead.
Paul Bakker1f87fb62011-01-15 17:32:24 +0000133 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200134void mbedtls_des_key_set_parity( unsigned char key[MBEDTLS_DES_KEY_SIZE] );
Paul Bakker1f87fb62011-01-15 17:32:24 +0000135
136/**
137 * \brief Check that key parity on the given key is odd.
138 *
139 * DES keys are 56 bits long, but each byte is padded with
140 * a parity bit to allow verification.
141 *
142 * \param key 8-byte secret key
Paul Bakker73206952011-07-06 14:37:33 +0000143 *
144 * \return 0 is parity was ok, 1 if parity was not correct.
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100145 *
146 * \warning DES is considered a weak cipher and its use constitutes a
147 * security risk. We recommend considering stronger ciphers
148 * instead.
Paul Bakker1f87fb62011-01-15 17:32:24 +0000149 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200150int mbedtls_des_key_check_key_parity( const unsigned char key[MBEDTLS_DES_KEY_SIZE] );
Paul Bakker1f87fb62011-01-15 17:32:24 +0000151
Paul Bakker1f87fb62011-01-15 17:32:24 +0000152/**
153 * \brief Check that key is not a weak or semi-weak DES key
154 *
155 * \param key 8-byte secret key
Paul Bakker73206952011-07-06 14:37:33 +0000156 *
Paul Bakker4793cc42011-08-17 09:40:55 +0000157 * \return 0 if no weak key was found, 1 if a weak key was identified.
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100158 *
159 * \warning DES is considered a weak cipher and its use constitutes a
160 * security risk. We recommend considering stronger ciphers
161 * instead.
Paul Bakker1f87fb62011-01-15 17:32:24 +0000162 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200163int mbedtls_des_key_check_weak( const unsigned char key[MBEDTLS_DES_KEY_SIZE] );
Paul Bakker1f87fb62011-01-15 17:32:24 +0000164
165/**
Paul Bakker5121ce52009-01-03 21:22:43 +0000166 * \brief DES key schedule (56-bit, encryption)
167 *
168 * \param ctx DES context to be initialized
169 * \param key 8-byte secret key
Paul Bakker8123e9d2011-01-06 15:37:30 +0000170 *
171 * \return 0
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100172 *
173 * \warning DES is considered a weak cipher and its use constitutes a
174 * security risk. We recommend considering stronger ciphers
175 * instead.
Paul Bakker5121ce52009-01-03 21:22:43 +0000176 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200177int mbedtls_des_setkey_enc( mbedtls_des_context *ctx, const unsigned char key[MBEDTLS_DES_KEY_SIZE] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000178
179/**
180 * \brief DES key schedule (56-bit, decryption)
181 *
182 * \param ctx DES context to be initialized
183 * \param key 8-byte secret key
Paul Bakker8123e9d2011-01-06 15:37:30 +0000184 *
185 * \return 0
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100186 *
187 * \warning DES is considered a weak cipher and its use constitutes a
188 * security risk. We recommend considering stronger ciphers
189 * instead.
Paul Bakker5121ce52009-01-03 21:22:43 +0000190 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200191int mbedtls_des_setkey_dec( mbedtls_des_context *ctx, const unsigned char key[MBEDTLS_DES_KEY_SIZE] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000192
193/**
194 * \brief Triple-DES key schedule (112-bit, encryption)
195 *
196 * \param ctx 3DES context to be initialized
197 * \param key 16-byte secret key
Paul Bakker8123e9d2011-01-06 15:37:30 +0000198 *
199 * \return 0
Paul Bakker5121ce52009-01-03 21:22:43 +0000200 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200201int mbedtls_des3_set2key_enc( mbedtls_des3_context *ctx,
202 const unsigned char key[MBEDTLS_DES_KEY_SIZE * 2] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000203
204/**
205 * \brief Triple-DES key schedule (112-bit, decryption)
206 *
207 * \param ctx 3DES context to be initialized
208 * \param key 16-byte secret key
Paul Bakker8123e9d2011-01-06 15:37:30 +0000209 *
210 * \return 0
Paul Bakker5121ce52009-01-03 21:22:43 +0000211 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200212int mbedtls_des3_set2key_dec( mbedtls_des3_context *ctx,
213 const unsigned char key[MBEDTLS_DES_KEY_SIZE * 2] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000214
215/**
216 * \brief Triple-DES key schedule (168-bit, encryption)
217 *
218 * \param ctx 3DES context to be initialized
219 * \param key 24-byte secret key
Paul Bakker8123e9d2011-01-06 15:37:30 +0000220 *
221 * \return 0
Paul Bakker5121ce52009-01-03 21:22:43 +0000222 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200223int mbedtls_des3_set3key_enc( mbedtls_des3_context *ctx,
224 const unsigned char key[MBEDTLS_DES_KEY_SIZE * 3] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000225
226/**
227 * \brief Triple-DES key schedule (168-bit, decryption)
228 *
229 * \param ctx 3DES context to be initialized
230 * \param key 24-byte secret key
Paul Bakker8123e9d2011-01-06 15:37:30 +0000231 *
232 * \return 0
Paul Bakker5121ce52009-01-03 21:22:43 +0000233 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200234int mbedtls_des3_set3key_dec( mbedtls_des3_context *ctx,
235 const unsigned char key[MBEDTLS_DES_KEY_SIZE * 3] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000236
237/**
238 * \brief DES-ECB block encryption/decryption
239 *
240 * \param ctx DES context
241 * \param input 64-bit input block
242 * \param output 64-bit output block
Paul Bakkerf3ccc682010-03-18 21:21:02 +0000243 *
Paul Bakker27caa8a2010-03-21 15:43:59 +0000244 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100245 *
246 * \warning DES is considered a weak cipher and its use constitutes a
247 * security risk. We recommend considering stronger ciphers
248 * instead.
Paul Bakker5121ce52009-01-03 21:22:43 +0000249 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200250int mbedtls_des_crypt_ecb( mbedtls_des_context *ctx,
Paul Bakkerff60ee62010-03-16 21:09:09 +0000251 const unsigned char input[8],
Paul Bakker5121ce52009-01-03 21:22:43 +0000252 unsigned char output[8] );
253
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200254#if defined(MBEDTLS_CIPHER_MODE_CBC)
Paul Bakker5121ce52009-01-03 21:22:43 +0000255/**
256 * \brief DES-CBC buffer encryption/decryption
257 *
Manuel Pégourié-Gonnard2be147a2015-01-23 16:19:47 +0000258 * \note Upon exit, the content of the IV is updated so that you can
259 * call the function same function again on the following
260 * block(s) of data and get the same result as if it was
261 * encrypted in one call. This allows a "streaming" usage.
262 * If on the other hand you need to retain the contents of the
263 * IV, you should either save it manually or use the cipher
264 * module instead.
265 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000266 * \param ctx DES context
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200267 * \param mode MBEDTLS_DES_ENCRYPT or MBEDTLS_DES_DECRYPT
Paul Bakker5121ce52009-01-03 21:22:43 +0000268 * \param length length of the input data
269 * \param iv initialization vector (updated after use)
270 * \param input buffer holding the input data
271 * \param output buffer holding the output data
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100272 *
273 * \warning DES is considered a weak cipher and its use constitutes a
274 * security risk. We recommend considering stronger ciphers
275 * instead.
Paul Bakker5121ce52009-01-03 21:22:43 +0000276 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200277int mbedtls_des_crypt_cbc( mbedtls_des_context *ctx,
Paul Bakker5121ce52009-01-03 21:22:43 +0000278 int mode,
Paul Bakker23986e52011-04-24 08:57:21 +0000279 size_t length,
Paul Bakker5121ce52009-01-03 21:22:43 +0000280 unsigned char iv[8],
Paul Bakkerff60ee62010-03-16 21:09:09 +0000281 const unsigned char *input,
Paul Bakker5121ce52009-01-03 21:22:43 +0000282 unsigned char *output );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200283#endif /* MBEDTLS_CIPHER_MODE_CBC */
Paul Bakker5121ce52009-01-03 21:22:43 +0000284
285/**
286 * \brief 3DES-ECB block encryption/decryption
287 *
288 * \param ctx 3DES context
289 * \param input 64-bit input block
290 * \param output 64-bit output block
Paul Bakkerf3ccc682010-03-18 21:21:02 +0000291 *
Paul Bakker27caa8a2010-03-21 15:43:59 +0000292 * \return 0 if successful
Paul Bakker5121ce52009-01-03 21:22:43 +0000293 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200294int mbedtls_des3_crypt_ecb( mbedtls_des3_context *ctx,
Paul Bakkerff60ee62010-03-16 21:09:09 +0000295 const unsigned char input[8],
Paul Bakker5121ce52009-01-03 21:22:43 +0000296 unsigned char output[8] );
297
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298#if defined(MBEDTLS_CIPHER_MODE_CBC)
Paul Bakker5121ce52009-01-03 21:22:43 +0000299/**
300 * \brief 3DES-CBC buffer encryption/decryption
301 *
Manuel Pégourié-Gonnard2be147a2015-01-23 16:19:47 +0000302 * \note Upon exit, the content of the IV is updated so that you can
303 * call the function same function again on the following
304 * block(s) of data and get the same result as if it was
305 * encrypted in one call. This allows a "streaming" usage.
306 * If on the other hand you need to retain the contents of the
307 * IV, you should either save it manually or use the cipher
308 * module instead.
309 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000310 * \param ctx 3DES context
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200311 * \param mode MBEDTLS_DES_ENCRYPT or MBEDTLS_DES_DECRYPT
Paul Bakker5121ce52009-01-03 21:22:43 +0000312 * \param length length of the input data
313 * \param iv initialization vector (updated after use)
314 * \param input buffer holding the input data
315 * \param output buffer holding the output data
Paul Bakkerf3ccc682010-03-18 21:21:02 +0000316 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200317 * \return 0 if successful, or MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH
Paul Bakker5121ce52009-01-03 21:22:43 +0000318 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200319int mbedtls_des3_crypt_cbc( mbedtls_des3_context *ctx,
Paul Bakker5121ce52009-01-03 21:22:43 +0000320 int mode,
Paul Bakker23986e52011-04-24 08:57:21 +0000321 size_t length,
Paul Bakker5121ce52009-01-03 21:22:43 +0000322 unsigned char iv[8],
Paul Bakkerff60ee62010-03-16 21:09:09 +0000323 const unsigned char *input,
Paul Bakker5121ce52009-01-03 21:22:43 +0000324 unsigned char *output );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200325#endif /* MBEDTLS_CIPHER_MODE_CBC */
Paul Bakker5121ce52009-01-03 21:22:43 +0000326
Manuel Pégourié-Gonnard70a50102015-05-12 15:02:45 +0200327/**
328 * \brief Internal function for key expansion.
329 * (Only exposed to allow overriding it,
330 * see MBEDTLS_DES_SETKEY_ALT)
331 *
332 * \param SK Round keys
333 * \param key Base key
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100334 *
335 * \warning DES is considered a weak cipher and its use constitutes a
336 * security risk. We recommend considering stronger ciphers
337 * instead.
Manuel Pégourié-Gonnard70a50102015-05-12 15:02:45 +0200338 */
339void mbedtls_des_setkey( uint32_t SK[32],
340 const unsigned char key[MBEDTLS_DES_KEY_SIZE] );
Paul Bakker90995b52013-06-24 19:20:35 +0200341
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500342#if defined(MBEDTLS_SELF_TEST)
343
Paul Bakker9a736322012-11-14 12:39:52 +0000344/**
Paul Bakker5121ce52009-01-03 21:22:43 +0000345 * \brief Checkup routine
346 *
347 * \return 0 if successful, or 1 if the test failed
348 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200349int mbedtls_des_self_test( int verbose );
Paul Bakker5121ce52009-01-03 21:22:43 +0000350
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500351#endif /* MBEDTLS_SELF_TEST */
352
Paul Bakker5121ce52009-01-03 21:22:43 +0000353#ifdef __cplusplus
354}
355#endif
356
357#endif /* des.h */