mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 11:05:39 +00:00
Add int return values to MD4 function calls
The following function calls are being deprecated to introduce int return values. * mbedtls_md4() * mbedtls_md4_starts() * mbedtls_md4_update() * mbedtls_md4_finish() * mbedtls_md4_process() The return codes can be used to return error values. This is important when using hardware accelerators.
This commit is contained in:
parent
1d85213602
commit
bee0635b15
|
@ -32,6 +32,11 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
|
||||||
|
!defined(inline) && !defined(__cplusplus)
|
||||||
|
#define inline __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(MBEDTLS_MD4_ALT)
|
#if !defined(MBEDTLS_MD4_ALT)
|
||||||
// Regular implementation
|
// Regular implementation
|
||||||
//
|
//
|
||||||
|
@ -78,8 +83,10 @@ void mbedtls_md4_clone( mbedtls_md4_context *dst,
|
||||||
* \brief MD4 context setup
|
* \brief MD4 context setup
|
||||||
*
|
*
|
||||||
* \param ctx context to be initialized
|
* \param ctx context to be initialized
|
||||||
|
*
|
||||||
|
* \return 0 if successful
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4_starts( mbedtls_md4_context *ctx );
|
int mbedtls_md4_starts_ext( mbedtls_md4_context *ctx );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief MD4 process buffer
|
* \brief MD4 process buffer
|
||||||
|
@ -87,16 +94,103 @@ void mbedtls_md4_starts( mbedtls_md4_context *ctx );
|
||||||
* \param ctx MD4 context
|
* \param ctx MD4 context
|
||||||
* \param input buffer holding the data
|
* \param input buffer holding the data
|
||||||
* \param ilen length of the input data
|
* \param ilen length of the input data
|
||||||
|
*
|
||||||
|
* \return 0 if successful
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4_update( mbedtls_md4_context *ctx, const unsigned char *input, size_t ilen );
|
int mbedtls_md4_update_ext( mbedtls_md4_context *ctx,
|
||||||
|
const unsigned char *input,
|
||||||
|
size_t ilen );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief MD4 final digest
|
* \brief MD4 final digest
|
||||||
*
|
*
|
||||||
* \param ctx MD4 context
|
* \param ctx MD4 context
|
||||||
* \param output MD4 checksum result
|
* \param output MD4 checksum result
|
||||||
|
*
|
||||||
|
* \return 0 if successful
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4_finish( mbedtls_md4_context *ctx, unsigned char output[16] );
|
int mbedtls_md4_finish_ext( mbedtls_md4_context *ctx,
|
||||||
|
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
|
||||||
|
*/
|
||||||
|
int mbedtls_md4_process_ext( mbedtls_md4_context *ctx,
|
||||||
|
const unsigned char data[64] );
|
||||||
|
|
||||||
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
|
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
||||||
|
#define MBEDTLS_DEPRECATED __attribute__((deprecated))
|
||||||
|
#else
|
||||||
|
#define MBEDTLS_DEPRECATED
|
||||||
|
#endif
|
||||||
|
/**
|
||||||
|
* \brief MD4 context setup
|
||||||
|
*
|
||||||
|
* \deprecated Superseded by mbedtls_md4_starts_ext() in 2.5.0
|
||||||
|
*
|
||||||
|
* \param ctx context to be initialized
|
||||||
|
*/
|
||||||
|
MBEDTLS_DEPRECATED static inline void mbedtls_md4_starts(
|
||||||
|
mbedtls_md4_context *ctx )
|
||||||
|
{
|
||||||
|
mbedtls_md4_starts_ext( ctx );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief MD4 process buffer
|
||||||
|
*
|
||||||
|
* \deprecated Superseded by mbedtls_md4_update_ext() in 2.5.0
|
||||||
|
*
|
||||||
|
* \param ctx MD4 context
|
||||||
|
* \param input buffer holding the data
|
||||||
|
* \param ilen length of the input data
|
||||||
|
*/
|
||||||
|
MBEDTLS_DEPRECATED static inline void mbedtls_md4_update(
|
||||||
|
mbedtls_md4_context *ctx,
|
||||||
|
const unsigned char *input,
|
||||||
|
size_t ilen )
|
||||||
|
{
|
||||||
|
mbedtls_md4_update_ext( ctx, input, ilen );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief MD4 final digest
|
||||||
|
*
|
||||||
|
* \deprecated Superseded by mbedtls_md4_finish_ext() in 2.5.0
|
||||||
|
*
|
||||||
|
* \param ctx MD4 context
|
||||||
|
* \param output MD4 checksum result
|
||||||
|
*/
|
||||||
|
MBEDTLS_DEPRECATED static inline void mbedtls_md4_finish(
|
||||||
|
mbedtls_md4_context *ctx,
|
||||||
|
unsigned char output[16] )
|
||||||
|
{
|
||||||
|
mbedtls_md4_finish_ext( ctx, output );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief MD4 process data block (internal use only)
|
||||||
|
*
|
||||||
|
* \deprecated Superseded by mbedtls_md4_process_ext() in 2.5.0
|
||||||
|
*
|
||||||
|
* \param ctx MD4 context
|
||||||
|
* \param data buffer holding one block of data
|
||||||
|
*/
|
||||||
|
MBEDTLS_DEPRECATED static inline void mbedtls_md4_process(
|
||||||
|
mbedtls_md4_context *ctx,
|
||||||
|
const unsigned char data[64] )
|
||||||
|
{
|
||||||
|
mbedtls_md4_process_ext( ctx, data );
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef MBEDTLS_DEPRECATED
|
||||||
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -116,8 +210,37 @@ extern "C" {
|
||||||
* \param input buffer holding the data
|
* \param input buffer holding the data
|
||||||
* \param ilen length of the input data
|
* \param ilen length of the input data
|
||||||
* \param output MD4 checksum result
|
* \param output MD4 checksum result
|
||||||
|
*
|
||||||
|
* \return 0 if successful
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4( const unsigned char *input, size_t ilen, unsigned char output[16] );
|
int mbedtls_md4_ext( const unsigned char *input,
|
||||||
|
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 )
|
||||||
|
*
|
||||||
|
* \deprecated Superseded by mbedtls_md4_ext() in 2.5.0
|
||||||
|
*
|
||||||
|
* \param input buffer holding the data
|
||||||
|
* \param ilen length of the input data
|
||||||
|
* \param output MD4 checksum result
|
||||||
|
*/
|
||||||
|
MBEDTLS_DEPRECATED static inline void mbedtls_md4( const unsigned char *input,
|
||||||
|
size_t ilen,
|
||||||
|
unsigned char output[16] )
|
||||||
|
{
|
||||||
|
mbedtls_md4_ext( input, ilen, output );
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef MBEDTLS_DEPRECATED
|
||||||
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Checkup routine
|
* \brief Checkup routine
|
||||||
|
@ -126,9 +249,6 @@ void mbedtls_md4( const unsigned char *input, size_t ilen, unsigned char output[
|
||||||
*/
|
*/
|
||||||
int mbedtls_md4_self_test( int verbose );
|
int mbedtls_md4_self_test( int verbose );
|
||||||
|
|
||||||
/* Internal use */
|
|
||||||
void mbedtls_md4_process( mbedtls_md4_context *ctx, const unsigned char data[64] );
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -98,7 +98,7 @@ void mbedtls_md4_clone( mbedtls_md4_context *dst,
|
||||||
/*
|
/*
|
||||||
* MD4 context setup
|
* MD4 context setup
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4_starts( mbedtls_md4_context *ctx )
|
int mbedtls_md4_starts_ext( mbedtls_md4_context *ctx )
|
||||||
{
|
{
|
||||||
ctx->total[0] = 0;
|
ctx->total[0] = 0;
|
||||||
ctx->total[1] = 0;
|
ctx->total[1] = 0;
|
||||||
|
@ -107,10 +107,13 @@ void mbedtls_md4_starts( mbedtls_md4_context *ctx )
|
||||||
ctx->state[1] = 0xEFCDAB89;
|
ctx->state[1] = 0xEFCDAB89;
|
||||||
ctx->state[2] = 0x98BADCFE;
|
ctx->state[2] = 0x98BADCFE;
|
||||||
ctx->state[3] = 0x10325476;
|
ctx->state[3] = 0x10325476;
|
||||||
|
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(MBEDTLS_MD4_PROCESS_ALT)
|
#if !defined(MBEDTLS_MD4_PROCESS_ALT)
|
||||||
void mbedtls_md4_process( mbedtls_md4_context *ctx, const unsigned char data[64] )
|
int mbedtls_md4_process_ext( mbedtls_md4_context *ctx,
|
||||||
|
const unsigned char data[64] )
|
||||||
{
|
{
|
||||||
uint32_t X[16], A, B, C, D;
|
uint32_t X[16], A, B, C, D;
|
||||||
|
|
||||||
|
@ -211,19 +214,24 @@ void mbedtls_md4_process( mbedtls_md4_context *ctx, const unsigned char data[64]
|
||||||
ctx->state[1] += B;
|
ctx->state[1] += B;
|
||||||
ctx->state[2] += C;
|
ctx->state[2] += C;
|
||||||
ctx->state[3] += D;
|
ctx->state[3] += D;
|
||||||
|
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
#endif /* !MBEDTLS_MD4_PROCESS_ALT */
|
#endif /* !MBEDTLS_MD4_PROCESS_ALT */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MD4 process buffer
|
* MD4 process buffer
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4_update( mbedtls_md4_context *ctx, const unsigned char *input, size_t ilen )
|
int mbedtls_md4_update_ext( mbedtls_md4_context *ctx,
|
||||||
|
const unsigned char *input,
|
||||||
|
size_t ilen )
|
||||||
{
|
{
|
||||||
|
int ret;
|
||||||
size_t fill;
|
size_t fill;
|
||||||
uint32_t left;
|
uint32_t left;
|
||||||
|
|
||||||
if( ilen == 0 )
|
if( ilen == 0 )
|
||||||
return;
|
return( 0 );
|
||||||
|
|
||||||
left = ctx->total[0] & 0x3F;
|
left = ctx->total[0] & 0x3F;
|
||||||
fill = 64 - left;
|
fill = 64 - left;
|
||||||
|
@ -238,7 +246,10 @@ void mbedtls_md4_update( mbedtls_md4_context *ctx, const unsigned char *input, s
|
||||||
{
|
{
|
||||||
memcpy( (void *) (ctx->buffer + left),
|
memcpy( (void *) (ctx->buffer + left),
|
||||||
(void *) input, fill );
|
(void *) input, fill );
|
||||||
mbedtls_md4_process( ctx, ctx->buffer );
|
|
||||||
|
if( ( ret = mbedtls_md4_process_ext( ctx, ctx->buffer ) ) != 0 )
|
||||||
|
return( ret );
|
||||||
|
|
||||||
input += fill;
|
input += fill;
|
||||||
ilen -= fill;
|
ilen -= fill;
|
||||||
left = 0;
|
left = 0;
|
||||||
|
@ -246,7 +257,9 @@ void mbedtls_md4_update( mbedtls_md4_context *ctx, const unsigned char *input, s
|
||||||
|
|
||||||
while( ilen >= 64 )
|
while( ilen >= 64 )
|
||||||
{
|
{
|
||||||
mbedtls_md4_process( ctx, input );
|
if( ( ret = mbedtls_md4_process_ext( ctx, input ) ) != 0 )
|
||||||
|
return( ret );
|
||||||
|
|
||||||
input += 64;
|
input += 64;
|
||||||
ilen -= 64;
|
ilen -= 64;
|
||||||
}
|
}
|
||||||
|
@ -256,6 +269,8 @@ void mbedtls_md4_update( mbedtls_md4_context *ctx, const unsigned char *input, s
|
||||||
memcpy( (void *) (ctx->buffer + left),
|
memcpy( (void *) (ctx->buffer + left),
|
||||||
(void *) input, ilen );
|
(void *) input, ilen );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
static const unsigned char md4_padding[64] =
|
static const unsigned char md4_padding[64] =
|
||||||
|
@ -269,8 +284,10 @@ static const unsigned char md4_padding[64] =
|
||||||
/*
|
/*
|
||||||
* MD4 final digest
|
* MD4 final digest
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4_finish( mbedtls_md4_context *ctx, unsigned char output[16] )
|
int mbedtls_md4_finish_ext( mbedtls_md4_context *ctx,
|
||||||
|
unsigned char output[16] )
|
||||||
{
|
{
|
||||||
|
int ret;
|
||||||
uint32_t last, padn;
|
uint32_t last, padn;
|
||||||
uint32_t high, low;
|
uint32_t high, low;
|
||||||
unsigned char msglen[8];
|
unsigned char msglen[8];
|
||||||
|
@ -285,13 +302,20 @@ void mbedtls_md4_finish( mbedtls_md4_context *ctx, unsigned char output[16] )
|
||||||
last = ctx->total[0] & 0x3F;
|
last = ctx->total[0] & 0x3F;
|
||||||
padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last );
|
padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last );
|
||||||
|
|
||||||
mbedtls_md4_update( ctx, (unsigned char *) md4_padding, padn );
|
ret = mbedtls_md4_update_ext( ctx, (unsigned char *)md4_padding, padn );
|
||||||
mbedtls_md4_update( ctx, msglen, 8 );
|
if( ret != 0 )
|
||||||
|
return( ret );
|
||||||
|
|
||||||
|
if( ( ret = mbedtls_md4_update_ext( ctx, msglen, 8 ) ) != 0 )
|
||||||
|
return( ret );
|
||||||
|
|
||||||
|
|
||||||
PUT_UINT32_LE( ctx->state[0], output, 0 );
|
PUT_UINT32_LE( ctx->state[0], output, 0 );
|
||||||
PUT_UINT32_LE( ctx->state[1], output, 4 );
|
PUT_UINT32_LE( ctx->state[1], output, 4 );
|
||||||
PUT_UINT32_LE( ctx->state[2], output, 8 );
|
PUT_UINT32_LE( ctx->state[2], output, 8 );
|
||||||
PUT_UINT32_LE( ctx->state[3], output, 12 );
|
PUT_UINT32_LE( ctx->state[3], output, 12 );
|
||||||
|
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* !MBEDTLS_MD4_ALT */
|
#endif /* !MBEDTLS_MD4_ALT */
|
||||||
|
@ -299,15 +323,27 @@ void mbedtls_md4_finish( mbedtls_md4_context *ctx, unsigned char output[16] )
|
||||||
/*
|
/*
|
||||||
* output = MD4( input buffer )
|
* output = MD4( input buffer )
|
||||||
*/
|
*/
|
||||||
void mbedtls_md4( const unsigned char *input, size_t ilen, unsigned char output[16] )
|
int mbedtls_md4_ext( const unsigned char *input,
|
||||||
|
size_t ilen,
|
||||||
|
unsigned char output[16] )
|
||||||
{
|
{
|
||||||
|
int ret;
|
||||||
mbedtls_md4_context ctx;
|
mbedtls_md4_context ctx;
|
||||||
|
|
||||||
mbedtls_md4_init( &ctx );
|
mbedtls_md4_init( &ctx );
|
||||||
mbedtls_md4_starts( &ctx );
|
|
||||||
mbedtls_md4_update( &ctx, input, ilen );
|
if( ( ret = mbedtls_md4_starts_ext( &ctx ) ) != 0 )
|
||||||
mbedtls_md4_finish( &ctx, output );
|
return( ret );
|
||||||
|
|
||||||
|
if( ( ret = mbedtls_md4_update_ext( &ctx, input, ilen ) ) != 0 )
|
||||||
|
return( ret );
|
||||||
|
|
||||||
|
if( ( ret = mbedtls_md4_finish_ext( &ctx, output ) ) != 0 )
|
||||||
|
return( ret );
|
||||||
|
|
||||||
mbedtls_md4_free( &ctx );
|
mbedtls_md4_free( &ctx );
|
||||||
|
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_SELF_TEST)
|
#if defined(MBEDTLS_SELF_TEST)
|
||||||
|
@ -358,16 +394,12 @@ int mbedtls_md4_self_test( int verbose )
|
||||||
if( verbose != 0 )
|
if( verbose != 0 )
|
||||||
mbedtls_printf( " MD4 test #%d: ", i + 1 );
|
mbedtls_printf( " MD4 test #%d: ", i + 1 );
|
||||||
|
|
||||||
mbedtls_md4( (unsigned char *) md4_test_str[i],
|
if( mbedtls_md4_ext( (unsigned char *) md4_test_str[i],
|
||||||
strlen( md4_test_str[i] ), md4sum );
|
strlen( md4_test_str[i] ), md4sum ) != 0 )
|
||||||
|
goto fail;
|
||||||
|
|
||||||
if( memcmp( md4sum, md4_test_sum[i], 16 ) != 0 )
|
if( memcmp( md4sum, md4_test_sum[i], 16 ) != 0 )
|
||||||
{
|
goto fail;
|
||||||
if( verbose != 0 )
|
|
||||||
mbedtls_printf( "failed\n" );
|
|
||||||
|
|
||||||
return( 1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
if( verbose != 0 )
|
if( verbose != 0 )
|
||||||
mbedtls_printf( "passed\n" );
|
mbedtls_printf( "passed\n" );
|
||||||
|
@ -377,6 +409,12 @@ int mbedtls_md4_self_test( int verbose )
|
||||||
mbedtls_printf( "\n" );
|
mbedtls_printf( "\n" );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
|
||||||
|
fail:
|
||||||
|
if( verbose != 0 )
|
||||||
|
mbedtls_printf( "failed\n" );
|
||||||
|
|
||||||
|
return( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* MBEDTLS_SELF_TEST */
|
#endif /* MBEDTLS_SELF_TEST */
|
||||||
|
|
Loading…
Reference in a new issue