blob: 3c85af249e7e2413bd635ea3b331cd476ef8a167 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
Simon Butcher5b331b92016-01-03 16:14:14 +00002 * \file md4.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief MD4 message digest algorithm (hash function)
Hanno Beckerbbca8c52017-09-25 14:53:51 +01005 *
6 * \warning MD4 is considered a weak message digest and its use constitutes a
7 * security risk. We recommend considering stronger message digests
8 * instead.
Darryl Greena40a1012018-01-05 15:33:17 +00009 */
10/*
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +020011 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020012 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
13 *
14 * This file is provided under the Apache License 2.0, or the
15 * GNU General Public License v2.0 or later.
16 *
17 * **********
18 * Apache License 2.0:
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020019 *
20 * Licensed under the Apache License, Version 2.0 (the "License"); you may
21 * not use this file except in compliance with the License.
22 * You may obtain a copy of the License at
23 *
24 * http://www.apache.org/licenses/LICENSE-2.0
25 *
26 * Unless required by applicable law or agreed to in writing, software
27 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
28 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 * See the License for the specific language governing permissions and
30 * limitations under the License.
Paul Bakkerb96f1542010-07-18 20:36:00 +000031 *
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020032 * **********
33 *
34 * **********
35 * GNU General Public License v2.0 or later:
36 *
37 * This program is free software; you can redistribute it and/or modify
38 * it under the terms of the GNU General Public License as published by
39 * the Free Software Foundation; either version 2 of the License, or
40 * (at your option) any later version.
41 *
42 * This program is distributed in the hope that it will be useful,
43 * but WITHOUT ANY WARRANTY; without even the implied warranty of
44 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45 * GNU General Public License for more details.
46 *
47 * You should have received a copy of the GNU General Public License along
48 * with this program; if not, write to the Free Software Foundation, Inc.,
49 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
50 *
51 * **********
52 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000053 * This file is part of mbed TLS (https://tls.mbed.org)
Hanno Beckerbbca8c52017-09-25 14:53:51 +010054 *
Paul Bakker5121ce52009-01-03 21:22:43 +000055 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020056#ifndef MBEDTLS_MD4_H
57#define MBEDTLS_MD4_H
Paul Bakker5121ce52009-01-03 21:22:43 +000058
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020059#if !defined(MBEDTLS_CONFIG_FILE)
Paul Bakker90995b52013-06-24 19:20:35 +020060#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020061#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020062#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020063#endif
Paul Bakker90995b52013-06-24 19:20:35 +020064
Rich Evans00ab4702015-02-06 13:43:58 +000065#include <stddef.h>
Manuel Pégourié-Gonnardab229102015-04-15 11:53:16 +020066#include <stdint.h>
Paul Bakker5c2364c2012-10-01 14:41:15 +000067
Gilles Peskinea381fe82018-01-23 18:16:11 +010068#define MBEDTLS_ERR_MD4_HW_ACCEL_FAILED -0x002D /**< MD4 hardware accelerator failed */
69
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020070#if !defined(MBEDTLS_MD4_ALT)
Paul Bakker90995b52013-06-24 19:20:35 +020071// Regular implementation
72//
73
Paul Bakker407a0da2013-06-27 14:29:21 +020074#ifdef __cplusplus
75extern "C" {
76#endif
77
Paul Bakker5121ce52009-01-03 21:22:43 +000078/**
79 * \brief MD4 context structure
Hanno Beckerbbca8c52017-09-25 14:53:51 +010080 *
81 * \warning MD4 is considered a weak message digest and its use
82 * constitutes a security risk. We recommend considering
83 * stronger message digests instead.
84 *
Paul Bakker5121ce52009-01-03 21:22:43 +000085 */
86typedef struct
87{
Paul Bakker5c2364c2012-10-01 14:41:15 +000088 uint32_t total[2]; /*!< number of bytes processed */
89 uint32_t state[4]; /*!< intermediate digest state */
Paul Bakker5121ce52009-01-03 21:22:43 +000090 unsigned char buffer[64]; /*!< data block being processed */
Paul Bakker5121ce52009-01-03 21:22:43 +000091}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020092mbedtls_md4_context;
Paul Bakker5121ce52009-01-03 21:22:43 +000093
Paul Bakker5121ce52009-01-03 21:22:43 +000094/**
Paul Bakker5b4af392014-06-26 12:09:34 +020095 * \brief Initialize MD4 context
96 *
97 * \param ctx MD4 context to be initialized
Hanno Beckerbbca8c52017-09-25 14:53:51 +010098 *
99 * \warning MD4 is considered a weak message digest and its use
100 * constitutes a security risk. We recommend considering
101 * stronger message digests instead.
102 *
Paul Bakker5b4af392014-06-26 12:09:34 +0200103 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200104void mbedtls_md4_init( mbedtls_md4_context *ctx );
Paul Bakker5b4af392014-06-26 12:09:34 +0200105
106/**
107 * \brief Clear MD4 context
108 *
109 * \param ctx MD4 context to be cleared
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100110 *
111 * \warning MD4 is considered a weak message digest and its use
112 * constitutes a security risk. We recommend considering
113 * stronger message digests instead.
114 *
Paul Bakker5b4af392014-06-26 12:09:34 +0200115 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200116void mbedtls_md4_free( mbedtls_md4_context *ctx );
Paul Bakker5b4af392014-06-26 12:09:34 +0200117
118/**
Manuel Pégourié-Gonnard16d412f2015-07-06 15:26:26 +0200119 * \brief Clone (the state of) an MD4 context
120 *
121 * \param dst The destination context
122 * \param src The context to be cloned
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100123 *
124 * \warning MD4 is considered a weak message digest and its use
125 * constitutes a security risk. We recommend considering
126 * stronger message digests instead.
127 *
Manuel Pégourié-Gonnard16d412f2015-07-06 15:26:26 +0200128 */
129void mbedtls_md4_clone( mbedtls_md4_context *dst,
130 const mbedtls_md4_context *src );
131
132/**
Paul Bakker5121ce52009-01-03 21:22:43 +0000133 * \brief MD4 context setup
134 *
135 * \param ctx context to be initialized
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100136 *
137 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100138 *
139 * \warning MD4 is considered a weak message digest and its use
140 * constitutes a security risk. We recommend considering
141 * stronger message digests instead.
Paul Bakker5121ce52009-01-03 21:22:43 +0000142 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100143int mbedtls_md4_starts_ret( mbedtls_md4_context *ctx );
Paul Bakker5121ce52009-01-03 21:22:43 +0000144
145/**
146 * \brief MD4 process buffer
147 *
148 * \param ctx MD4 context
Andres Amaya Garciaa21247e2017-07-20 14:01:08 +0100149 * \param input buffer holding the data
Paul Bakker5121ce52009-01-03 21:22:43 +0000150 * \param ilen length of the input data
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100151 *
152 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100153 *
154 * \warning MD4 is considered a weak message digest and its use
155 * constitutes a security risk. We recommend considering
156 * stronger message digests instead.
157 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000158 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100159int mbedtls_md4_update_ret( mbedtls_md4_context *ctx,
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100160 const unsigned char *input,
161 size_t ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000162
163/**
164 * \brief MD4 final digest
165 *
166 * \param ctx MD4 context
167 * \param output MD4 checksum result
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100168 *
169 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100170 *
171 * \warning MD4 is considered a weak message digest and its use
172 * constitutes a security risk. We recommend considering
173 * stronger message digests instead.
174 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000175 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100176int mbedtls_md4_finish_ret( mbedtls_md4_context *ctx,
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100177 unsigned char output[16] );
178
179/**
180 * \brief MD4 process data block (internal use only)
181 *
182 * \param ctx MD4 context
183 * \param data buffer holding one block of data
184 *
185 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100186 *
187 * \warning MD4 is considered a weak message digest and its use
188 * constitutes a security risk. We recommend considering
189 * stronger message digests instead.
190 *
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100191 */
Andres Amaya Garciacccfe082017-06-28 10:36:39 +0100192int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
193 const unsigned char data[64] );
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100194
195#if !defined(MBEDTLS_DEPRECATED_REMOVED)
196#if defined(MBEDTLS_DEPRECATED_WARNING)
197#define MBEDTLS_DEPRECATED __attribute__((deprecated))
198#else
199#define MBEDTLS_DEPRECATED
200#endif
201/**
202 * \brief MD4 context setup
203 *
Gilles Peskine3e28d702018-01-22 12:18:59 +0100204 * \deprecated Superseded by mbedtls_md4_starts_ret() in 2.7.0
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100205 *
206 * \param ctx context to be initialized
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100207 *
208 * \warning MD4 is considered a weak message digest and its use
209 * constitutes a security risk. We recommend considering
210 * stronger message digests instead.
211 *
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100212 */
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000213MBEDTLS_DEPRECATED void mbedtls_md4_starts( mbedtls_md4_context *ctx );
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100214
215/**
216 * \brief MD4 process buffer
217 *
Gilles Peskine3e28d702018-01-22 12:18:59 +0100218 * \deprecated Superseded by mbedtls_md4_update_ret() in 2.7.0
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100219 *
220 * \param ctx MD4 context
Andres Amaya Garciaa21247e2017-07-20 14:01:08 +0100221 * \param input buffer holding the data
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100222 * \param ilen length of the input data
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100223 *
224 * \warning MD4 is considered a weak message digest and its use
225 * constitutes a security risk. We recommend considering
226 * stronger message digests instead.
227 *
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100228 */
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000229MBEDTLS_DEPRECATED void mbedtls_md4_update( mbedtls_md4_context *ctx,
230 const unsigned char *input,
231 size_t ilen );
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100232
233/**
234 * \brief MD4 final digest
235 *
Gilles Peskine3e28d702018-01-22 12:18:59 +0100236 * \deprecated Superseded by mbedtls_md4_finish_ret() in 2.7.0
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100237 *
238 * \param ctx MD4 context
239 * \param output MD4 checksum result
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100240 *
241 * \warning MD4 is considered a weak message digest and its use
242 * constitutes a security risk. We recommend considering
243 * stronger message digests instead.
244 *
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100245 */
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000246MBEDTLS_DEPRECATED void mbedtls_md4_finish( mbedtls_md4_context *ctx,
247 unsigned char output[16] );
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100248
249/**
250 * \brief MD4 process data block (internal use only)
251 *
Gilles Peskine3e28d702018-01-22 12:18:59 +0100252 * \deprecated Superseded by mbedtls_internal_md4_process() in 2.7.0
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100253 *
254 * \param ctx MD4 context
255 * \param data buffer holding one block of data
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100256 *
257 * \warning MD4 is considered a weak message digest and its use
258 * constitutes a security risk. We recommend considering
259 * stronger message digests instead.
260 *
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100261 */
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000262MBEDTLS_DEPRECATED void mbedtls_md4_process( mbedtls_md4_context *ctx,
263 const unsigned char data[64] );
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100264
265#undef MBEDTLS_DEPRECATED
266#endif /* !MBEDTLS_DEPRECATED_REMOVED */
Paul Bakker5121ce52009-01-03 21:22:43 +0000267
Paul Bakker90995b52013-06-24 19:20:35 +0200268#ifdef __cplusplus
269}
270#endif
271
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200272#else /* MBEDTLS_MD4_ALT */
Paul Bakker90995b52013-06-24 19:20:35 +0200273#include "md4_alt.h"
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200274#endif /* MBEDTLS_MD4_ALT */
Paul Bakker90995b52013-06-24 19:20:35 +0200275
276#ifdef __cplusplus
277extern "C" {
278#endif
279
Paul Bakker5121ce52009-01-03 21:22:43 +0000280/**
281 * \brief Output = MD4( input buffer )
282 *
Andres Amaya Garciaa21247e2017-07-20 14:01:08 +0100283 * \param input buffer holding the data
Paul Bakker5121ce52009-01-03 21:22:43 +0000284 * \param ilen length of the input data
285 * \param output MD4 checksum result
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100286 *
287 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100288 *
289 * \warning MD4 is considered a weak message digest and its use
290 * constitutes a security risk. We recommend considering
291 * stronger message digests instead.
292 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000293 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100294int mbedtls_md4_ret( const unsigned char *input,
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100295 size_t ilen,
296 unsigned char output[16] );
297
298#if !defined(MBEDTLS_DEPRECATED_REMOVED)
299#if defined(MBEDTLS_DEPRECATED_WARNING)
300#define MBEDTLS_DEPRECATED __attribute__((deprecated))
301#else
302#define MBEDTLS_DEPRECATED
303#endif
304/**
305 * \brief Output = MD4( input buffer )
306 *
Gilles Peskine3e28d702018-01-22 12:18:59 +0100307 * \deprecated Superseded by mbedtls_md4_ret() in 2.7.0
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100308 *
Andres Amaya Garciaa21247e2017-07-20 14:01:08 +0100309 * \param input buffer holding the data
Paul Bakker5121ce52009-01-03 21:22:43 +0000310 * \param ilen length of the input data
311 * \param output MD4 checksum result
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100312 *
313 * \warning MD4 is considered a weak message digest and its use
314 * constitutes a security risk. We recommend considering
315 * stronger message digests instead.
316 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000317 */
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000318MBEDTLS_DEPRECATED void mbedtls_md4( const unsigned char *input,
319 size_t ilen,
320 unsigned char output[16] );
Andres Amaya Garciabee06352017-04-28 17:00:30 +0100321
322#undef MBEDTLS_DEPRECATED
323#endif /* !MBEDTLS_DEPRECATED_REMOVED */
Paul Bakker5121ce52009-01-03 21:22:43 +0000324
325/**
Paul Bakker5121ce52009-01-03 21:22:43 +0000326 * \brief Checkup routine
327 *
328 * \return 0 if successful, or 1 if the test failed
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100329 *
330 * \warning MD4 is considered a weak message digest and its use
331 * constitutes a security risk. We recommend considering
332 * stronger message digests instead.
333 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000334 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200335int mbedtls_md4_self_test( int verbose );
Paul Bakker5121ce52009-01-03 21:22:43 +0000336
Paul Bakker5121ce52009-01-03 21:22:43 +0000337#ifdef __cplusplus
338}
339#endif
340
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200341#endif /* mbedtls_md4.h */