mbed TLS v2.7.17
md4.h
Go to the documentation of this file.
1 
10 /*
11  * Copyright The Mbed TLS Contributors
12  * 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:
19  *
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.
31  *
32  * **********
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  *
53  */
54 #ifndef MBEDTLS_MD4_H
55 #define MBEDTLS_MD4_H
56 
57 #if !defined(MBEDTLS_CONFIG_FILE)
58 #include "config.h"
59 #else
60 #include MBEDTLS_CONFIG_FILE
61 #endif
62 
63 #include <stddef.h>
64 #include <stdint.h>
65 
66 #define MBEDTLS_ERR_MD4_HW_ACCEL_FAILED -0x002D
68 #if !defined(MBEDTLS_MD4_ALT)
69 // Regular implementation
70 //
71 
72 #ifdef __cplusplus
73 extern "C" {
74 #endif
75 
84 typedef struct
85 {
86  uint32_t total[2];
87  uint32_t state[4];
88  unsigned char buffer[64];
89 }
91 
103 
115 
128  const mbedtls_md4_context *src );
129 
142 
158  const unsigned char *input,
159  size_t ilen );
160 
175  unsigned char output[16] );
176 
191  const unsigned char data[64] );
192 
193 #if !defined(MBEDTLS_DEPRECATED_REMOVED)
194 #if defined(MBEDTLS_DEPRECATED_WARNING)
195 #define MBEDTLS_DEPRECATED __attribute__((deprecated))
196 #else
197 #define MBEDTLS_DEPRECATED
198 #endif
199 
212 
228  const unsigned char *input,
229  size_t ilen );
230 
245  unsigned char output[16] );
246 
261  const unsigned char data[64] );
262 
263 #undef MBEDTLS_DEPRECATED
264 #endif /* !MBEDTLS_DEPRECATED_REMOVED */
265 
266 #ifdef __cplusplus
267 }
268 #endif
269 
270 #else /* MBEDTLS_MD4_ALT */
271 #include "md4_alt.h"
272 #endif /* MBEDTLS_MD4_ALT */
273 
274 #ifdef __cplusplus
275 extern "C" {
276 #endif
277 
292 int mbedtls_md4_ret( const unsigned char *input,
293  size_t ilen,
294  unsigned char output[16] );
295 
296 #if !defined(MBEDTLS_DEPRECATED_REMOVED)
297 #if defined(MBEDTLS_DEPRECATED_WARNING)
298 #define MBEDTLS_DEPRECATED __attribute__((deprecated))
299 #else
300 #define MBEDTLS_DEPRECATED
301 #endif
302 
316 MBEDTLS_DEPRECATED void mbedtls_md4( const unsigned char *input,
317  size_t ilen,
318  unsigned char output[16] );
319 
320 #undef MBEDTLS_DEPRECATED
321 #endif /* !MBEDTLS_DEPRECATED_REMOVED */
322 
333 int mbedtls_md4_self_test( int verbose );
334 
335 #ifdef __cplusplus
336 }
337 #endif
338 
339 #endif /* mbedtls_md4.h */
int mbedtls_md4_ret(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD4( input buffer )
int mbedtls_md4_self_test(int verbose)
Checkup routine.
int mbedtls_internal_md4_process(mbedtls_md4_context *ctx, const unsigned char data[64])
MD4 process data block (internal use only)
#define MBEDTLS_DEPRECATED
Definition: aes.h:387
Configuration options (set of defines)
MBEDTLS_DEPRECATED void mbedtls_md4_update(mbedtls_md4_context *ctx, const unsigned char *input, size_t ilen)
MD4 process buffer.
void mbedtls_md4_clone(mbedtls_md4_context *dst, const mbedtls_md4_context *src)
Clone (the state of) an MD4 context.
void mbedtls_md4_free(mbedtls_md4_context *ctx)
Clear MD4 context.
MBEDTLS_DEPRECATED void mbedtls_md4_starts(mbedtls_md4_context *ctx)
MD4 context setup.
int mbedtls_md4_starts_ret(mbedtls_md4_context *ctx)
MD4 context setup.
int mbedtls_md4_finish_ret(mbedtls_md4_context *ctx, unsigned char output[16])
MD4 final digest.
MD4 context structure.
Definition: md4.h:84
MBEDTLS_DEPRECATED void mbedtls_md4_process(mbedtls_md4_context *ctx, const unsigned char data[64])
MD4 process data block (internal use only)
int mbedtls_md4_update_ret(mbedtls_md4_context *ctx, const unsigned char *input, size_t ilen)
MD4 process buffer.
MBEDTLS_DEPRECATED void mbedtls_md4_finish(mbedtls_md4_context *ctx, unsigned char output[16])
MD4 final digest.
void mbedtls_md4_init(mbedtls_md4_context *ctx)
Initialize MD4 context.
MBEDTLS_DEPRECATED void mbedtls_md4(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD4( input buffer )