2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \file sha4.h
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2011-01-27 16:24:17 +01:00
|
|
|
* \brief SHA-384 and SHA-512 cryptographic hash function
|
2011-01-06 13:28:03 +01:00
|
|
|
*
|
2010-07-18 12:13:04 +02:00
|
|
|
* Copyright (C) 2006-2010, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
* All rights reserved.
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2009-01-03 22:51:57 +01:00
|
|
|
#ifndef POLARSSL_SHA4_H
|
|
|
|
#define POLARSSL_SHA4_H
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
#if defined(_MSC_VER) || defined(__WATCOMC__)
|
|
|
|
#define UL64(x) x##ui64
|
2011-12-04 23:10:28 +01:00
|
|
|
#define long64 __int64
|
2009-01-03 22:22:43 +01:00
|
|
|
#else
|
|
|
|
#define UL64(x) x##ULL
|
2011-12-04 23:10:28 +01:00
|
|
|
#define long64 long long
|
2009-01-03 22:22:43 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 context structure
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-12-04 23:10:28 +01:00
|
|
|
unsigned long64 total[2]; /*!< number of bytes processed */
|
|
|
|
unsigned long64 state[8]; /*!< intermediate digest state */
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char buffer[128]; /*!< data block being processed */
|
|
|
|
|
|
|
|
unsigned char ipad[128]; /*!< HMAC: inner padding */
|
|
|
|
unsigned char opad[128]; /*!< HMAC: outer padding */
|
|
|
|
int is384; /*!< 0 => SHA-512, else SHA-384 */
|
|
|
|
}
|
|
|
|
sha4_context;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 context setup
|
|
|
|
*
|
|
|
|
* \param ctx context to be initialized
|
|
|
|
* \param is384 0 = use SHA512, 1 = use SHA384
|
|
|
|
*/
|
|
|
|
void sha4_starts( sha4_context *ctx, int is384 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 process buffer
|
|
|
|
*
|
|
|
|
* \param ctx SHA-512 context
|
|
|
|
* \param input buffer holding the data
|
|
|
|
* \param ilen length of the input data
|
|
|
|
*/
|
2011-04-24 10:57:21 +02:00
|
|
|
void sha4_update( sha4_context *ctx, const unsigned char *input, size_t ilen );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 final digest
|
|
|
|
*
|
|
|
|
* \param ctx SHA-512 context
|
|
|
|
* \param output SHA-384/512 checksum result
|
|
|
|
*/
|
|
|
|
void sha4_finish( sha4_context *ctx, unsigned char output[64] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Output = SHA-512( input buffer )
|
|
|
|
*
|
|
|
|
* \param input buffer holding the data
|
|
|
|
* \param ilen length of the input data
|
|
|
|
* \param output SHA-384/512 checksum result
|
|
|
|
* \param is384 0 = use SHA512, 1 = use SHA384
|
|
|
|
*/
|
2011-04-24 10:57:21 +02:00
|
|
|
void sha4( const unsigned char *input, size_t ilen,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char output[64], int is384 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Output = SHA-512( file contents )
|
|
|
|
*
|
|
|
|
* \param path input file name
|
|
|
|
* \param output SHA-384/512 checksum result
|
|
|
|
* \param is384 0 = use SHA512, 1 = use SHA384
|
|
|
|
*
|
|
|
|
* \return 0 if successful, 1 if fopen failed,
|
|
|
|
* or 2 if fread failed
|
|
|
|
*/
|
2010-03-16 22:09:09 +01:00
|
|
|
int sha4_file( const char *path, unsigned char output[64], int is384 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 HMAC context setup
|
|
|
|
*
|
|
|
|
* \param ctx HMAC context to be initialized
|
|
|
|
* \param is384 0 = use SHA512, 1 = use SHA384
|
|
|
|
* \param key HMAC secret key
|
|
|
|
* \param keylen length of the HMAC key
|
|
|
|
*/
|
2011-04-24 10:57:21 +02:00
|
|
|
void sha4_hmac_starts( sha4_context *ctx, const unsigned char *key, size_t keylen,
|
2009-01-03 22:22:43 +01:00
|
|
|
int is384 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 HMAC process buffer
|
|
|
|
*
|
|
|
|
* \param ctx HMAC context
|
|
|
|
* \param input buffer holding the data
|
|
|
|
* \param ilen length of the input data
|
|
|
|
*/
|
2011-04-24 10:57:21 +02:00
|
|
|
void sha4_hmac_update( sha4_context *ctx, const unsigned char *input, size_t ilen );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 HMAC final digest
|
|
|
|
*
|
|
|
|
* \param ctx HMAC context
|
|
|
|
* \param output SHA-384/512 HMAC checksum result
|
|
|
|
*/
|
|
|
|
void sha4_hmac_finish( sha4_context *ctx, unsigned char output[64] );
|
|
|
|
|
2010-03-21 17:23:13 +01:00
|
|
|
/**
|
|
|
|
* \brief SHA-512 HMAC context reset
|
|
|
|
*
|
|
|
|
* \param ctx HMAC context to be reset
|
|
|
|
*/
|
|
|
|
void sha4_hmac_reset( sha4_context *ctx );
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \brief Output = HMAC-SHA-512( hmac key, input buffer )
|
|
|
|
*
|
|
|
|
* \param key HMAC secret key
|
|
|
|
* \param keylen length of the HMAC key
|
|
|
|
* \param input buffer holding the data
|
|
|
|
* \param ilen length of the input data
|
|
|
|
* \param output HMAC-SHA-384/512 result
|
|
|
|
* \param is384 0 = use SHA512, 1 = use SHA384
|
|
|
|
*/
|
2011-04-24 10:57:21 +02:00
|
|
|
void sha4_hmac( const unsigned char *key, size_t keylen,
|
|
|
|
const unsigned char *input, size_t ilen,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char output[64], int is384 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Checkup routine
|
|
|
|
*
|
|
|
|
* \return 0 if successful, or 1 if the test failed
|
|
|
|
*/
|
|
|
|
int sha4_self_test( int verbose );
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* sha4.h */
|