2009-01-03 22:22:43 +01:00
|
|
|
/**
|
2016-01-03 17:14:14 +01:00
|
|
|
* \file md4.h
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* \brief MD4 message digest algorithm (hash function)
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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-04 17:27:10 +01:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifndef MBEDTLS_MD4_H
|
|
|
|
#define MBEDTLS_MD4_H
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2019-07-04 21:01:14 +02:00
|
|
|
#include "mbedtls/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-10-04 09:59:13 +02:00
|
|
|
/* MBEDTLS_ERR_MD4_HW_ACCEL_FAILED is deprecated and should not be used. */
|
2018-01-23 18:16:11 +01:00
|
|
|
#define MBEDTLS_ERR_MD4_HW_ACCEL_FAILED -0x002D /**< MD4 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_MD4_ALT)
|
|
|
|
// Regular implementation
|
|
|
|
//
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \brief MD4 context structure
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_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_md4_context;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-05-18 15:53:08 +02:00
|
|
|
#else /* MBEDTLS_MD4_ALT */
|
|
|
|
#include "md4_alt.h"
|
|
|
|
#endif /* MBEDTLS_MD4_ALT */
|
|
|
|
|
2014-06-26 12:09:34 +02:00
|
|
|
/**
|
|
|
|
* \brief Initialize MD4 context
|
|
|
|
*
|
|
|
|
* \param ctx MD4 context to be initialized
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_init( mbedtls_md4_context *ctx );
|
2014-06-26 12:09:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Clear MD4 context
|
|
|
|
*
|
|
|
|
* \param ctx MD4 context to be cleared
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_free( mbedtls_md4_context *ctx );
|
2014-06-26 12:09:34 +02:00
|
|
|
|
2015-07-06 15:26:26 +02:00
|
|
|
/**
|
|
|
|
* \brief Clone (the state of) an MD4 context
|
|
|
|
*
|
|
|
|
* \param dst The destination context
|
|
|
|
* \param src The context to be cloned
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_clone( mbedtls_md4_context *dst,
|
|
|
|
const mbedtls_md4_context *src );
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \brief MD4 context setup
|
|
|
|
*
|
|
|
|
* \param ctx context to be initialized
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_starts_ret( mbedtls_md4_context *ctx );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD4 process buffer
|
|
|
|
*
|
|
|
|
* \param ctx MD4 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-04-28 18:00:30 +02:00
|
|
|
*
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_update_ret( mbedtls_md4_context *ctx,
|
2017-04-28 18:00:30 +02:00
|
|
|
const unsigned char *input,
|
|
|
|
size_t ilen );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD4 final digest
|
|
|
|
*
|
|
|
|
* \param ctx MD4 context
|
|
|
|
* \param output MD4 checksum result
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 is considered a weak message digest and its use
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
* stronger message digests instead.
|
|
|
|
*
|
2017-04-28 18:00:30 +02:00
|
|
|
*/
|
2018-01-22 11:48:08 +01:00
|
|
|
int mbedtls_md4_finish_ret( mbedtls_md4_context *ctx,
|
2017-04-28 18:00:30 +02:00
|
|
|
unsigned char output[16] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD4 process data block (internal use only)
|
|
|
|
*
|
|
|
|
* \param ctx MD4 context
|
|
|
|
* \param data buffer holding one block of data
|
|
|
|
*
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 is considered a weak message digest and its use
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
* stronger message digests instead.
|
|
|
|
*
|
2017-04-28 18:00:30 +02:00
|
|
|
*/
|
2017-06-28 11:36:39 +02:00
|
|
|
int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
|
|
|
|
const unsigned char data[64] );
|
2017-04-28 18:00:30 +02:00
|
|
|
|
|
|
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
|
|
|
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
|
|
|
#define MBEDTLS_DEPRECATED __attribute__((deprecated))
|
|
|
|
#else
|
|
|
|
#define MBEDTLS_DEPRECATED
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* \brief MD4 context setup
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md4_starts_ret() in 2.7.0
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
|
|
|
* \param ctx context to be initialized
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_starts( mbedtls_md4_context *ctx );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD4 process buffer
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md4_update_ret() in 2.7.0
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* \param ctx MD4 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 MD4 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_md4_update( mbedtls_md4_context *ctx,
|
|
|
|
const unsigned char *input,
|
|
|
|
size_t ilen );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD4 final digest
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md4_finish_ret() in 2.7.0
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* \param ctx MD4 context
|
|
|
|
* \param output MD4 checksum result
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_finish( mbedtls_md4_context *ctx,
|
|
|
|
unsigned char output[16] );
|
2017-04-28 18:00:30 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief MD4 process data block (internal use only)
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_internal_md4_process() in 2.7.0
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
|
|
|
* \param ctx MD4 context
|
|
|
|
* \param data buffer holding one block of data
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 is considered a weak message digest and its use
|
|
|
|
* constitutes a security risk. We recommend considering
|
|
|
|
* stronger message digests instead.
|
|
|
|
*
|
2017-04-28 18:00:30 +02:00
|
|
|
*/
|
2018-02-19 16:28:08 +01:00
|
|
|
MBEDTLS_DEPRECATED void mbedtls_md4_process( mbedtls_md4_context *ctx,
|
|
|
|
const unsigned char data[64] );
|
2017-04-28 18:00:30 +02:00
|
|
|
|
|
|
|
#undef MBEDTLS_DEPRECATED
|
|
|
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Output = MD4( 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 MD4 checksum result
|
2017-04-28 18:00:30 +02:00
|
|
|
*
|
|
|
|
* \return 0 if successful
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4_ret( const unsigned char *input,
|
2017-04-28 18:00:30 +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 = MD4( input buffer )
|
|
|
|
*
|
2018-01-22 12:18:59 +01:00
|
|
|
* \deprecated Superseded by mbedtls_md4_ret() in 2.7.0
|
2017-04-28 18:00:30 +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 MD4 checksum result
|
2017-09-25 15:53:51 +02:00
|
|
|
*
|
|
|
|
* \warning MD4 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_md4( const unsigned char *input,
|
|
|
|
size_t ilen,
|
|
|
|
unsigned char output[16] );
|
2017-04-28 18:00:30 +02:00
|
|
|
|
|
|
|
#undef MBEDTLS_DEPRECATED
|
|
|
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|
2009-01-03 22:22:43 +01: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 MD4 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_md4_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_md4.h */
|