2011-01-06 15:20:01 +01:00
|
|
|
/**
|
|
|
|
* \file md.c
|
2014-05-01 13:03:14 +02:00
|
|
|
*
|
2011-01-06 15:20:01 +01:00
|
|
|
* \brief Generic message digest wrapper for PolarSSL
|
|
|
|
*
|
|
|
|
* \author Adriaan de Jong <dejong@fox-it.com>
|
|
|
|
*
|
2014-05-01 13:03:14 +02:00
|
|
|
* Copyright (C) 2006-2014, Brainspark B.V.
|
2011-01-06 15:20:01 +01:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2011-01-06 15:20:01 +01:00
|
|
|
#include "polarssl/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
#if defined(POLARSSL_MD_C)
|
|
|
|
|
|
|
|
#include "polarssl/md.h"
|
|
|
|
#include "polarssl/md_wrap.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-10-29 15:22:54 +01:00
|
|
|
#if defined(_MSC_VER) && !defined strcasecmp && !defined(EFIX64) && \
|
|
|
|
!defined(EFI32)
|
|
|
|
#define strcasecmp _stricmp
|
2011-04-18 05:47:52 +02:00
|
|
|
#endif
|
|
|
|
|
2014-06-13 17:20:13 +02:00
|
|
|
/* Implementation that should never be optimized out by the compiler */
|
|
|
|
static void polarssl_zeroize( void *v, size_t n ) {
|
|
|
|
volatile unsigned char *p = v; while( n-- ) *p++ = 0;
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:27:44 +01:00
|
|
|
static const int supported_digests[] = {
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
#if defined(POLARSSL_SHA512_C)
|
|
|
|
POLARSSL_MD_SHA512,
|
2014-08-21 19:38:32 +02:00
|
|
|
POLARSSL_MD_SHA384,
|
2011-01-16 22:27:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
#if defined(POLARSSL_SHA256_C)
|
|
|
|
POLARSSL_MD_SHA256,
|
2014-08-21 19:38:32 +02:00
|
|
|
POLARSSL_MD_SHA224,
|
2011-01-16 22:27:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
#if defined(POLARSSL_SHA1_C)
|
|
|
|
POLARSSL_MD_SHA1,
|
2011-01-16 22:27:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-01-22 13:35:29 +01:00
|
|
|
#if defined(POLARSSL_RIPEMD160_C)
|
|
|
|
POLARSSL_MD_RIPEMD160,
|
2014-01-17 20:41:32 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
#if defined(POLARSSL_MD5_C)
|
|
|
|
POLARSSL_MD_MD5,
|
2011-01-16 22:27:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
#if defined(POLARSSL_MD4_C)
|
|
|
|
POLARSSL_MD_MD4,
|
2011-01-16 22:27:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
#if defined(POLARSSL_MD2_C)
|
|
|
|
POLARSSL_MD_MD2,
|
2011-01-16 22:27:44 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-07 14:02:33 +02:00
|
|
|
POLARSSL_MD_NONE
|
2011-01-16 22:27:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const int *md_list( void )
|
|
|
|
{
|
2014-06-17 14:06:49 +02:00
|
|
|
return( supported_digests );
|
2011-01-16 22:27:44 +01:00
|
|
|
}
|
|
|
|
|
2011-01-06 15:20:01 +01:00
|
|
|
const md_info_t *md_info_from_string( const char *md_name )
|
|
|
|
{
|
|
|
|
if( NULL == md_name )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( NULL );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
/* Get the appropriate digest information */
|
|
|
|
#if defined(POLARSSL_MD2_C)
|
|
|
|
if( !strcasecmp( "MD2", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_MD2 );
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_MD4_C)
|
|
|
|
if( !strcasecmp( "MD4", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_MD4 );
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_MD5_C)
|
|
|
|
if( !strcasecmp( "MD5", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_MD5 );
|
|
|
|
#endif
|
2014-01-22 13:35:29 +01:00
|
|
|
#if defined(POLARSSL_RIPEMD160_C)
|
|
|
|
if( !strcasecmp( "RIPEMD160", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_RIPEMD160 );
|
2014-01-17 20:41:32 +01:00
|
|
|
#endif
|
2011-01-06 15:20:01 +01:00
|
|
|
#if defined(POLARSSL_SHA1_C)
|
|
|
|
if( !strcasecmp( "SHA1", md_name ) || !strcasecmp( "SHA", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_SHA1 );
|
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA256_C)
|
2011-01-06 15:20:01 +01:00
|
|
|
if( !strcasecmp( "SHA224", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_SHA224 );
|
|
|
|
if( !strcasecmp( "SHA256", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_SHA256 );
|
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA512_C)
|
2011-01-06 15:20:01 +01:00
|
|
|
if( !strcasecmp( "SHA384", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_SHA384 );
|
|
|
|
if( !strcasecmp( "SHA512", md_name ) )
|
|
|
|
return md_info_from_type( POLARSSL_MD_SHA512 );
|
|
|
|
#endif
|
2014-06-17 14:06:49 +02:00
|
|
|
return( NULL );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const md_info_t *md_info_from_type( md_type_t md_type )
|
|
|
|
{
|
|
|
|
switch( md_type )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_MD2_C)
|
|
|
|
case POLARSSL_MD_MD2:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &md2_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_MD4_C)
|
|
|
|
case POLARSSL_MD_MD4:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &md4_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_MD5_C)
|
|
|
|
case POLARSSL_MD_MD5:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &md5_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
#endif
|
2014-01-22 13:35:29 +01:00
|
|
|
#if defined(POLARSSL_RIPEMD160_C)
|
|
|
|
case POLARSSL_MD_RIPEMD160:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &ripemd160_info );
|
2014-01-17 20:41:32 +01:00
|
|
|
#endif
|
2011-01-06 15:20:01 +01:00
|
|
|
#if defined(POLARSSL_SHA1_C)
|
|
|
|
case POLARSSL_MD_SHA1:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &sha1_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA256_C)
|
2011-01-06 15:20:01 +01:00
|
|
|
case POLARSSL_MD_SHA224:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &sha224_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
case POLARSSL_MD_SHA256:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &sha256_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA512_C)
|
2011-01-06 15:20:01 +01:00
|
|
|
case POLARSSL_MD_SHA384:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &sha384_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
case POLARSSL_MD_SHA512:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( &sha512_info );
|
2011-01-06 15:20:01 +01:00
|
|
|
#endif
|
|
|
|
default:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( NULL );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-01 14:53:22 +02:00
|
|
|
void md_init( md_context_t *ctx )
|
|
|
|
{
|
|
|
|
memset( ctx, 0, sizeof( md_context_t ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void md_free( md_context_t *ctx )
|
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( ctx->md_ctx )
|
|
|
|
ctx->md_info->ctx_free_func( ctx->md_ctx );
|
|
|
|
|
|
|
|
polarssl_zeroize( ctx, sizeof( md_context_t ) );
|
|
|
|
}
|
|
|
|
|
2011-01-20 17:42:01 +01:00
|
|
|
int md_init_ctx( md_context_t *ctx, const md_info_t *md_info )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
2012-04-26 12:09:35 +02:00
|
|
|
if( md_info == NULL || ctx == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2012-04-26 12:09:35 +02:00
|
|
|
memset( ctx, 0, sizeof( md_context_t ) );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
if( ( ctx->md_ctx = md_info->ctx_alloc_func() ) == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_ALLOC_FAILED );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
ctx->md_info = md_info;
|
|
|
|
|
|
|
|
md_info->starts_func( ctx->md_ctx );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-01-20 17:42:01 +01:00
|
|
|
int md_free_ctx( md_context_t *ctx )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
2014-07-01 14:53:22 +02:00
|
|
|
md_free( ctx );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-01-20 17:42:01 +01:00
|
|
|
int md_starts( md_context_t *ctx )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2011-01-20 17:42:01 +01:00
|
|
|
ctx->md_info->starts_func( ctx->md_ctx );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
int md_update( md_context_t *ctx, const unsigned char *input, size_t ilen )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2011-01-20 17:42:01 +01:00
|
|
|
ctx->md_info->update_func( ctx->md_ctx, input, ilen );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-20 17:42:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int md_finish( md_context_t *ctx, unsigned char *output )
|
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-20 17:42:01 +01:00
|
|
|
|
|
|
|
ctx->md_info->finish_func( ctx->md_ctx, output );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
int md( const md_info_t *md_info, const unsigned char *input, size_t ilen,
|
2011-01-06 15:20:01 +01:00
|
|
|
unsigned char *output )
|
|
|
|
{
|
2014-06-17 16:39:18 +02:00
|
|
|
if( md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
md_info->digest_func( input, ilen, output );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int md_file( const md_info_t *md_info, const char *path, unsigned char *output )
|
|
|
|
{
|
2012-01-14 19:07:41 +01:00
|
|
|
#if defined(POLARSSL_FS_IO)
|
2011-06-09 17:55:11 +02:00
|
|
|
int ret;
|
2012-01-14 19:07:41 +01:00
|
|
|
#endif
|
2011-06-09 17:55:11 +02:00
|
|
|
|
2011-01-06 15:20:01 +01:00
|
|
|
if( md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2011-04-25 17:28:35 +02:00
|
|
|
#if defined(POLARSSL_FS_IO)
|
2011-06-09 17:55:11 +02:00
|
|
|
ret = md_info->file_func( path, output );
|
2012-01-14 19:07:41 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
return( POLARSSL_ERR_MD_FILE_IO_ERROR + ret );
|
2011-06-09 17:55:11 +02:00
|
|
|
|
2012-01-14 19:07:41 +01:00
|
|
|
return( ret );
|
2011-04-25 17:28:35 +02:00
|
|
|
#else
|
|
|
|
((void) path);
|
|
|
|
((void) output);
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_FEATURE_UNAVAILABLE );
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* POLARSSL_FS_IO */
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
int md_hmac_starts( md_context_t *ctx, const unsigned char *key, size_t keylen )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
2011-01-20 17:42:01 +01:00
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
ctx->md_info->hmac_starts_func( ctx->md_ctx, key, keylen );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
int md_hmac_update( md_context_t *ctx, const unsigned char *input, size_t ilen )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
ctx->md_info->hmac_update_func( ctx->md_ctx, input, ilen );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
int md_hmac_finish( md_context_t *ctx, unsigned char *output )
|
2011-01-06 15:20:01 +01:00
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
ctx->md_info->hmac_finish_func( ctx->md_ctx, output );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int md_hmac_reset( md_context_t *ctx )
|
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
ctx->md_info->hmac_reset_func( ctx->md_ctx );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
int md_hmac( const md_info_t *md_info, const unsigned char *key, size_t keylen,
|
|
|
|
const unsigned char *input, size_t ilen,
|
2011-01-06 15:20:01 +01:00
|
|
|
unsigned char *output )
|
|
|
|
{
|
|
|
|
if( md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
md_info->hmac_func( key, keylen, input, ilen, output );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2011-01-06 15:20:01 +01:00
|
|
|
}
|
|
|
|
|
2013-03-13 10:26:44 +01:00
|
|
|
int md_process( md_context_t *ctx, const unsigned char *data )
|
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->md_info == NULL )
|
2014-06-17 14:06:49 +02:00
|
|
|
return( POLARSSL_ERR_MD_BAD_INPUT_DATA );
|
2013-03-13 10:26:44 +01:00
|
|
|
|
|
|
|
ctx->md_info->process_func( ctx->md_ctx, data );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2013-03-13 10:26:44 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* POLARSSL_MD_C */
|