2009-01-03 22:22:43 +01:00
|
|
|
/**
|
2016-01-03 17:14:14 +01:00
|
|
|
* \file md5.h
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* \brief MD5 message digest algorithm (hash function)
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use constitutes a
|
|
|
|
|
* security risk. We recommend considering stronger message
|
|
|
|
|
* digests instead.
|
2018-01-05 16:33:17 +01:00
|
|
|
*/
|
|
|
|
|
/*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifndef MBEDTLS_MD5_H
|
|
|
|
|
#define MBEDTLS_MD5_H
|
2021-05-19 19:44:07 +02:00
|
|
|
#include "mbedtls/private_access.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2013-06-24 19:20:35 +02:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <stddef.h>
|
2015-04-15 11:53:16 +02:00
|
|
|
#include <stdint.h>
|
2012-10-01 16:41:15 +02:00
|
|
|
|
2013-06-27 14:29:21 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-05-18 15:53:08 +02:00
|
|
|
#if !defined(MBEDTLS_MD5_ALT)
|
|
|
|
|
// Regular implementation
|
|
|
|
|
//
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
|
* \brief MD5 context structure
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
typedef struct mbedtls_md5_context {
|
2021-05-19 19:44:07 +02:00
|
|
|
uint32_t MBEDTLS_PRIVATE(total)[2]; /*!< number of bytes processed */
|
|
|
|
|
uint32_t MBEDTLS_PRIVATE(state)[4]; /*!< intermediate digest state */
|
|
|
|
|
unsigned char MBEDTLS_PRIVATE(buffer)[64]; /*!< data block being processed */
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md5_context;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-05-18 15:53:08 +02:00
|
|
|
#else /* MBEDTLS_MD5_ALT */
|
|
|
|
|
#include "md5_alt.h"
|
|
|
|
|
#endif /* MBEDTLS_MD5_ALT */
|
|
|
|
|
|
2014-06-26 12:09:34 +02:00
|
|
|
/**
|
|
|
|
|
* \brief Initialize MD5 context
|
|
|
|
|
*
|
|
|
|
|
* \param ctx MD5 context to be initialized
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2014-06-26 12:09:34 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_md5_init(mbedtls_md5_context *ctx);
|
2014-06-26 12:09:34 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \brief Clear MD5 context
|
|
|
|
|
*
|
|
|
|
|
* \param ctx MD5 context to be cleared
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2014-06-26 12:09:34 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_md5_free(mbedtls_md5_context *ctx);
|
2014-06-26 12:09:34 +02:00
|
|
|
|
2015-07-06 15:26:26 +02:00
|
|
|
/**
|
|
|
|
|
* \brief Clone (the state of) an MD5 context
|
|
|
|
|
*
|
|
|
|
|
* \param dst The destination context
|
|
|
|
|
* \param src The context to be cloned
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2015-07-06 15:26:26 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_md5_clone(mbedtls_md5_context *dst,
|
|
|
|
|
const mbedtls_md5_context *src);
|
2015-07-06 15:26:26 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
|
* \brief MD5 context setup
|
|
|
|
|
*
|
|
|
|
|
* \param ctx context to be initialized
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_md5_starts(mbedtls_md5_context *ctx);
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \brief MD5 process buffer
|
|
|
|
|
*
|
|
|
|
|
* \param ctx MD5 context
|
2017-07-20 15:01:08 +02:00
|
|
|
* \param input buffer holding the data
|
2009-01-03 22:22:43 +01:00
|
|
|
* \param ilen length of the input data
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_md5_update(mbedtls_md5_context *ctx,
|
|
|
|
|
const unsigned char *input,
|
|
|
|
|
size_t ilen);
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \brief MD5 final digest
|
|
|
|
|
*
|
|
|
|
|
* \param ctx MD5 context
|
|
|
|
|
* \param output MD5 checksum result
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_md5_finish(mbedtls_md5_context *ctx,
|
|
|
|
|
unsigned char output[16]);
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-05-02 11:19:27 +02:00
|
|
|
/**
|
|
|
|
|
* \brief MD5 process data block (internal use only)
|
|
|
|
|
*
|
|
|
|
|
* \param ctx MD5 context
|
|
|
|
|
* \param data buffer holding one block of data
|
|
|
|
|
*
|
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2017-05-02 11:19:27 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_internal_md5_process(mbedtls_md5_context *ctx,
|
|
|
|
|
const unsigned char data[64]);
|
2017-05-02 11:19:27 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
|
* \brief Output = MD5( input buffer )
|
|
|
|
|
*
|
2017-07-20 15:01:08 +02:00
|
|
|
* \param input buffer holding the data
|
2009-01-03 22:22:43 +01:00
|
|
|
* \param ilen length of the input data
|
|
|
|
|
* \param output MD5 checksum result
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2017-05-02 11:19:27 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_md5(const unsigned char *input,
|
|
|
|
|
size_t ilen,
|
|
|
|
|
unsigned char output[16]);
|
2017-05-02 11:19:27 +02:00
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
|
* \brief Checkup routine
|
|
|
|
|
*
|
|
|
|
|
* \return 0 if successful, or 1 if the test failed
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
|
* \warning MD5 is considered a weak message digest and its use
|
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
|
* stronger message digests instead.
|
|
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_md5_self_test(int verbose);
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* mbedtls_md5.h */
|