mbed TLS v2.28.4
Loading...
Searching...
No Matches
md5.h
Go to the documentation of this file.
1
10/*
11 * Copyright The Mbed TLS Contributors
12 * 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.
25 */
26#ifndef MBEDTLS_MD5_H
27#define MBEDTLS_MD5_H
28
29#if !defined(MBEDTLS_CONFIG_FILE)
30#include "mbedtls/config.h"
31#else
32#include MBEDTLS_CONFIG_FILE
33#endif
34
35#include <stddef.h>
36#include <stdint.h>
37
38/* MBEDTLS_ERR_MD5_HW_ACCEL_FAILED is deprecated and should not be used. */
40#define MBEDTLS_ERR_MD5_HW_ACCEL_FAILED -0x002F
41
42#ifdef __cplusplus
43extern "C" {
44#endif
45
46#if !defined(MBEDTLS_MD5_ALT)
47// Regular implementation
48//
49
58typedef struct mbedtls_md5_context {
59 uint32_t total[2];
60 uint32_t state[4];
61 unsigned char buffer[64];
62}
64
65#else /* MBEDTLS_MD5_ALT */
66#include "md5_alt.h"
67#endif /* MBEDTLS_MD5_ALT */
68
80
92
105 const mbedtls_md5_context *src);
106
120
136 const unsigned char *input,
137 size_t ilen);
138
153 unsigned char output[16]);
154
169 const unsigned char data[64]);
170
171#if !defined(MBEDTLS_DEPRECATED_REMOVED)
172#if defined(MBEDTLS_DEPRECATED_WARNING)
173#define MBEDTLS_DEPRECATED __attribute__((deprecated))
174#else
175#define MBEDTLS_DEPRECATED
176#endif
190
206 const unsigned char *input,
207 size_t ilen);
208
223 unsigned char output[16]);
224
239 const unsigned char data[64]);
240
241#undef MBEDTLS_DEPRECATED
242#endif /* !MBEDTLS_DEPRECATED_REMOVED */
243
258int mbedtls_md5_ret(const unsigned char *input,
259 size_t ilen,
260 unsigned char output[16]);
261
262#if !defined(MBEDTLS_DEPRECATED_REMOVED)
263#if defined(MBEDTLS_DEPRECATED_WARNING)
264#define MBEDTLS_DEPRECATED __attribute__((deprecated))
265#else
266#define MBEDTLS_DEPRECATED
267#endif
282MBEDTLS_DEPRECATED void mbedtls_md5(const unsigned char *input,
283 size_t ilen,
284 unsigned char output[16]);
285
286#undef MBEDTLS_DEPRECATED
287#endif /* !MBEDTLS_DEPRECATED_REMOVED */
288
289#if defined(MBEDTLS_SELF_TEST)
290
301int mbedtls_md5_self_test(int verbose);
302
303#endif /* MBEDTLS_SELF_TEST */
304
305#ifdef __cplusplus
306}
307#endif
308
309#endif /* mbedtls_md5.h */
Configuration options (set of defines)
void mbedtls_md5_clone(mbedtls_md5_context *dst, const mbedtls_md5_context *src)
Clone (the state of) an MD5 context.
int mbedtls_internal_md5_process(mbedtls_md5_context *ctx, const unsigned char data[64])
MD5 process data block (internal use only)
MBEDTLS_DEPRECATED void mbedtls_md5(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD5( input buffer )
int mbedtls_md5_self_test(int verbose)
Checkup routine.
void mbedtls_md5_free(mbedtls_md5_context *ctx)
Clear MD5 context.
MBEDTLS_DEPRECATED void mbedtls_md5_process(mbedtls_md5_context *ctx, const unsigned char data[64])
MD5 process data block (internal use only)
MBEDTLS_DEPRECATED void mbedtls_md5_starts(mbedtls_md5_context *ctx)
MD5 context setup.
int mbedtls_md5_ret(const unsigned char *input, size_t ilen, unsigned char output[16])
Output = MD5( input buffer )
#define MBEDTLS_DEPRECATED
Definition: md5.h:266
int mbedtls_md5_starts_ret(mbedtls_md5_context *ctx)
MD5 context setup.
MBEDTLS_DEPRECATED void mbedtls_md5_finish(mbedtls_md5_context *ctx, unsigned char output[16])
MD5 final digest.
void mbedtls_md5_init(mbedtls_md5_context *ctx)
Initialize MD5 context.
int mbedtls_md5_update_ret(mbedtls_md5_context *ctx, const unsigned char *input, size_t ilen)
MD5 process buffer.
int mbedtls_md5_finish_ret(mbedtls_md5_context *ctx, unsigned char output[16])
MD5 final digest.
MBEDTLS_DEPRECATED void mbedtls_md5_update(mbedtls_md5_context *ctx, const unsigned char *input, size_t ilen)
MD5 process buffer.
MD5 context structure.
Definition: md5.h:58
uint32_t state[4]
Definition: md5.h:60
unsigned char buffer[64]
Definition: md5.h:61
uint32_t total[2]
Definition: md5.h:59