2009-01-03 22:22:43 +01:00
|
|
|
/**
|
2013-06-30 14:49:12 +02:00
|
|
|
* \file sha512.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
|
|
|
*
|
2014-05-01 14:18:25 +02:00
|
|
|
* Copyright (C) 2006-2014, 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
|
|
|
*/
|
2013-06-30 14:49:12 +02:00
|
|
|
#ifndef POLARSSL_SHA512_H
|
|
|
|
#define POLARSSL_SHA512_H
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2013-06-24 19:20:35 +02:00
|
|
|
#include "config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2013-06-24 19:20:35 +02: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
|
2012-10-01 16:41:15 +02:00
|
|
|
typedef unsigned __int64 uint64_t;
|
2009-01-03 22:22:43 +01:00
|
|
|
#else
|
2012-10-01 16:41:15 +02:00
|
|
|
#include <inttypes.h>
|
2009-01-03 22:22:43 +01:00
|
|
|
#define UL64(x) x##ULL
|
|
|
|
#endif
|
|
|
|
|
2013-06-30 14:34:05 +02:00
|
|
|
#define POLARSSL_ERR_SHA512_FILE_IO_ERROR -0x007A /**< Read/write error in file. */
|
2012-10-01 16:41:15 +02:00
|
|
|
|
2013-06-30 14:34:05 +02:00
|
|
|
#if !defined(POLARSSL_SHA512_ALT)
|
2013-06-24 19:20:35 +02:00
|
|
|
// Regular implementation
|
|
|
|
//
|
|
|
|
|
2013-06-27 14:29:21 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \brief SHA-512 context structure
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-10-01 16:41:15 +02:00
|
|
|
uint64_t total[2]; /*!< number of bytes processed */
|
|
|
|
uint64_t 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 */
|
|
|
|
}
|
2013-06-30 14:34:05 +02:00
|
|
|
sha512_context;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 context setup
|
|
|
|
*
|
|
|
|
* \param ctx context to be initialized
|
|
|
|
* \param is384 0 = use SHA512, 1 = use SHA384
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_starts( sha512_context *ctx, int is384 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 process buffer
|
|
|
|
*
|
|
|
|
* \param ctx SHA-512 context
|
|
|
|
* \param input buffer holding the data
|
|
|
|
* \param ilen length of the input data
|
|
|
|
*/
|
2014-05-01 14:18:25 +02:00
|
|
|
void sha512_update( sha512_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
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_finish( sha512_context *ctx, unsigned char output[64] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-06-24 19:20:35 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-06-30 14:34:05 +02:00
|
|
|
#else /* POLARSSL_SHA512_ALT */
|
2013-06-30 14:49:12 +02:00
|
|
|
#include "sha512_alt.h"
|
2013-06-30 14:34:05 +02:00
|
|
|
#endif /* POLARSSL_SHA512_ALT */
|
2013-06-24 19:20:35 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \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
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512( const unsigned char *input, size_t ilen,
|
|
|
|
unsigned char output[64], int is384 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \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
|
|
|
|
*
|
2013-06-30 14:34:05 +02:00
|
|
|
* \return 0 if successful, or POLARSSL_ERR_SHA512_FILE_IO_ERROR
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
int sha512_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
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_hmac_starts( sha512_context *ctx, const unsigned char *key,
|
|
|
|
size_t keylen, int is384 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief SHA-512 HMAC process buffer
|
|
|
|
*
|
|
|
|
* \param ctx HMAC context
|
|
|
|
* \param input buffer holding the data
|
|
|
|
* \param ilen length of the input data
|
|
|
|
*/
|
2014-05-01 14:18:25 +02:00
|
|
|
void sha512_hmac_update( sha512_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
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_hmac_finish( sha512_context *ctx, unsigned char output[64] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2010-03-21 17:23:13 +01:00
|
|
|
/**
|
|
|
|
* \brief SHA-512 HMAC context reset
|
|
|
|
*
|
|
|
|
* \param ctx HMAC context to be reset
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_hmac_reset( sha512_context *ctx );
|
2010-03-21 17:23:13 +01:00
|
|
|
|
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
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_hmac( const unsigned char *key, size_t keylen,
|
2011-04-24 10:57:21 +02:00
|
|
|
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
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
int sha512_self_test( int verbose );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-03-13 10:26:44 +01:00
|
|
|
/* Internal use */
|
2013-06-30 14:34:05 +02:00
|
|
|
void sha512_process( sha512_context *ctx, const unsigned char data[128] );
|
2013-03-13 10:26:44 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-06-30 14:49:12 +02:00
|
|
|
#endif /* sha512.h */
|