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
|
|
|
*/
|
|
|
|
/*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
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-04 17:27:10 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifndef MBEDTLS_MD5_H
|
|
|
|
#define MBEDTLS_MD5_H
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2013-06-24 19:20:35 +02:00
|
|
|
#include "config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
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
|
|
|
|
2018-01-23 18:16:11 +01:00
|
|
|
#define MBEDTLS_ERR_MD5_HW_ACCEL_FAILED -0x002F /**< MD5 hardware accelerator failed */
|
|
|
|
|
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
|
|
|
*/
|
2018-07-24 10:02:47 +02:00
|
|
|
typedef struct mbedtls_md5_context
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2012-10-01 16:41:15 +02:00
|
|
|
uint32_t total[2]; /*!< number of bytes processed */
|
|
|
|
uint32_t state[4]; /*!< intermediate digest state */
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char buffer[64]; /*!< data block being processed */
|
|
|
|
}
|
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
|
|
|
*/
|
2015-04-08 12:49:31 +02: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
|
|
|
*/
|
2015-04-08 12:49:31 +02: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
|
|
|
*/
|
|
|
|
void mbedtls_md5_clone( mbedtls_md5_context *dst,
|
|
|
|
const mbedtls_md5_context *src );
|
|
|
|
|
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
|
|
|
*/
|
2018-01-22 11:48:08 +01:00
|
|
|
int mbedtls_md5_starts_ret( 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
|
|
|
*/
|
2018-01-22 11:48:08 +01:00
|
|
|
int mbedtls_md5_update_ret( mbedtls_md5_context *ctx,
|
2017-05-02 11:19:27 +02:00
|
|
|
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
|
|
|
*/
|
2018-01-22 11:48:08 +01:00
|
|
|
int mbedtls_md5_finish_ret( mbedtls_md5_context *ctx,
|
2017-05-02 11:19:27 +02:00
|
|
|
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
|
|
|
*/
|
2017-06-28 11:36:39 +02:00
|
|
|
int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
|
|
|
|
const unsigned char data[64] );
|
2017-05-02 11:19:27 +02:00
|
|
|
|
|
|
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
|
|
|
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
|
|
|
#define MBEDTLS_DEPRECATED __attribute__((deprecated))
|
|
|
|
#else
|
|
|
|
#define MBEDTLS_DEPRECATED
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* \brief MD5 context setup
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md5_starts_ret() in 2.7.0
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
|
|
|
* \param ctx 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.
|
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2018-02-19 16:28:08 +01:00
|
|
|
MBEDTLS_DEPRECATED void mbedtls_md5_starts( mbedtls_md5_context *ctx );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD5 process buffer
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md5_update_ret() in 2.7.0
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* \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-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
|
|
|
*/
|
2018-02-19 16:28:08 +01:00
|
|
|
MBEDTLS_DEPRECATED void 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
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md5_finish_ret() in 2.7.0
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* \param ctx MD5 context
|
|
|
|
* \param output MD5 checksum result
|
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
|
|
|
*/
|
2018-02-19 16:28:08 +01:00
|
|
|
MBEDTLS_DEPRECATED void mbedtls_md5_finish( mbedtls_md5_context *ctx,
|
|
|
|
unsigned char output[16] );
|
2017-05-02 11:19:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD5 process data block (internal use only)
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_internal_md5_process() in 2.7.0
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
|
|
|
* \param ctx MD5 context
|
|
|
|
* \param data buffer holding one block of data
|
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
|
|
|
*/
|
2018-02-19 16:28:08 +01:00
|
|
|
MBEDTLS_DEPRECATED void mbedtls_md5_process( mbedtls_md5_context *ctx,
|
|
|
|
const unsigned char data[64] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-05-02 11:19:27 +02:00
|
|
|
#undef MBEDTLS_DEPRECATED
|
|
|
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|
2013-06-24 19:20:35 +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
|
|
|
*/
|
2018-01-22 11:48:08 +01:00
|
|
|
int mbedtls_md5_ret( const unsigned char *input,
|
2017-05-02 11:19:27 +02:00
|
|
|
size_t ilen,
|
|
|
|
unsigned char output[16] );
|
|
|
|
|
|
|
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
|
|
|
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
|
|
|
#define MBEDTLS_DEPRECATED __attribute__((deprecated))
|
|
|
|
#else
|
|
|
|
#define MBEDTLS_DEPRECATED
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* \brief Output = MD5( input buffer )
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md5_ret() in 2.7.0
|
2017-05-02 11:19:27 +02:00
|
|
|
*
|
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-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
|
|
|
*/
|
2018-02-19 16:28:08 +01:00
|
|
|
MBEDTLS_DEPRECATED void mbedtls_md5( const unsigned char *input,
|
|
|
|
size_t ilen,
|
|
|
|
unsigned char output[16] );
|
2017-05-02 11:19:27 +02:00
|
|
|
|
|
|
|
#undef MBEDTLS_DEPRECATED
|
|
|
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|
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
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_md5_self_test( int verbose );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* mbedtls_md5.h */
|