mbed TLS v2.7.17
md2.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_MD2_H
55 #define MBEDTLS_MD2_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 
65 #define MBEDTLS_ERR_MD2_HW_ACCEL_FAILED -0x002B
67 #if !defined(MBEDTLS_MD2_ALT)
68 // Regular implementation
69 //
70 
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74 
83 typedef struct
84 {
85  unsigned char cksum[16];
86  unsigned char state[48];
87  unsigned char buffer[16];
88  size_t left;
89 }
91 
103 
115 
128  const mbedtls_md2_context *src );
129 
143 
159  const unsigned char *input,
160  size_t ilen );
161 
176  unsigned char output[16] );
177 
191 
192 #if !defined(MBEDTLS_DEPRECATED_REMOVED)
193 #if defined(MBEDTLS_DEPRECATED_WARNING)
194 #define MBEDTLS_DEPRECATED __attribute__((deprecated))
195 #else
196 #define MBEDTLS_DEPRECATED
197 #endif
198 
211 
227  const unsigned char *input,
228  size_t ilen );
229 
244  unsigned char output[16] );
245 
259 
260 #undef MBEDTLS_DEPRECATED
261 #endif /* !MBEDTLS_DEPRECATED_REMOVED */
262 
263 #ifdef __cplusplus
264 }
265 #endif
266 
267 #else /* MBEDTLS_MD2_ALT */
268 #include "md2_alt.h"
269 #endif /* MBEDTLS_MD2_ALT */
270 
271 #ifdef __cplusplus
272 extern "C" {
273 #endif
274 
287 int mbedtls_md2_ret( const unsigned char *input,
288  size_t ilen,
289  unsigned char output[16] );
290 
291 #if !defined(MBEDTLS_DEPRECATED_REMOVED)
292 #if defined(MBEDTLS_DEPRECATED_WARNING)
293 #define MBEDTLS_DEPRECATED __attribute__((deprecated))
294 #else
295 #define MBEDTLS_DEPRECATED
296 #endif
297 
311 MBEDTLS_DEPRECATED void mbedtls_md2( const unsigned char *input,
312  size_t ilen,
313  unsigned char output[16] );
314 
315 #undef MBEDTLS_DEPRECATED
316 #endif /* !MBEDTLS_DEPRECATED_REMOVED */
317 
328 int mbedtls_md2_self_test( int verbose );
329 
330 #ifdef __cplusplus
331 }
332 #endif
333 
334 #endif /* mbedtls_md2.h */
MBEDTLS_DEPRECATED void mbedtls_md2(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD2( input buffer )
size_t left
Definition: md2.h:88
#define MBEDTLS_DEPRECATED
Definition: aes.h:387
MBEDTLS_DEPRECATED void mbedtls_md2_starts(mbedtls_md2_context *ctx)
MD2 context setup.
int mbedtls_md2_update_ret(mbedtls_md2_context *ctx, const unsigned char *input, size_t ilen)
MD2 process buffer.
Configuration options (set of defines)
MBEDTLS_DEPRECATED void mbedtls_md2_update(mbedtls_md2_context *ctx, const unsigned char *input, size_t ilen)
MD2 process buffer.
int mbedtls_md2_self_test(int verbose)
Checkup routine.
void mbedtls_md2_init(mbedtls_md2_context *ctx)
Initialize MD2 context.
MBEDTLS_DEPRECATED void mbedtls_md2_finish(mbedtls_md2_context *ctx, unsigned char output[16])
MD2 final digest.
int mbedtls_internal_md2_process(mbedtls_md2_context *ctx)
MD2 process data block (internal use only)
int mbedtls_md2_ret(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD2( input buffer )
void mbedtls_md2_clone(mbedtls_md2_context *dst, const mbedtls_md2_context *src)
Clone (the state of) an MD2 context.
int mbedtls_md2_finish_ret(mbedtls_md2_context *ctx, unsigned char output[16])
MD2 final digest.
int mbedtls_md2_starts_ret(mbedtls_md2_context *ctx)
MD2 context setup.
MD2 context structure.
Definition: md2.h:83
MBEDTLS_DEPRECATED void mbedtls_md2_process(mbedtls_md2_context *ctx)
MD2 process data block (internal use only)
void mbedtls_md2_free(mbedtls_md2_context *ctx)
Clear MD2 context.