blob: 57a731bfadd692567116d7cb7d0bf2f313029407 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file sha1.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief SHA-1 cryptographic hash function
5 *
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +02006 * Copyright (C) 2006-2014, Brainspark B.V.
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
8 * This file is part of PolarSSL (http://www.polarssl.org)
Paul Bakker84f12b72010-07-18 10:13:04 +00009 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakkerb96f1542010-07-18 20:36:00 +000010 *
Paul Bakker77b385e2009-07-28 17:23:11 +000011 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000012 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Paul Bakker5121ce52009-01-03 21:22:43 +000026 */
Paul Bakker40e46942009-01-03 21:51:57 +000027#ifndef POLARSSL_SHA1_H
28#define POLARSSL_SHA1_H
Paul Bakker5121ce52009-01-03 21:22:43 +000029
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020030#if !defined(POLARSSL_CONFIG_FILE)
Paul Bakker90995b52013-06-24 19:20:35 +020031#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020032#else
33#include POLARSSL_CONFIG_FILE
34#endif
Paul Bakker90995b52013-06-24 19:20:35 +020035
Paul Bakker23986e52011-04-24 08:57:21 +000036#include <string.h>
37
Paul Bakkerfa6a6202013-10-28 18:48:30 +010038#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
Paul Bakker5c2364c2012-10-01 14:41:15 +000039#include <basetsd.h>
40typedef UINT32 uint32_t;
41#else
42#include <inttypes.h>
43#endif
44
Paul Bakker69e095c2011-12-10 21:55:01 +000045#define POLARSSL_ERR_SHA1_FILE_IO_ERROR -0x0076 /**< Read/write error in file. */
46
Paul Bakker90995b52013-06-24 19:20:35 +020047#if !defined(POLARSSL_SHA1_ALT)
48// Regular implementation
49//
50
Paul Bakker407a0da2013-06-27 14:29:21 +020051#ifdef __cplusplus
52extern "C" {
53#endif
54
Paul Bakker5121ce52009-01-03 21:22:43 +000055/**
56 * \brief SHA-1 context structure
57 */
58typedef struct
59{
Paul Bakker5c2364c2012-10-01 14:41:15 +000060 uint32_t total[2]; /*!< number of bytes processed */
61 uint32_t state[5]; /*!< intermediate digest state */
Paul Bakker5121ce52009-01-03 21:22:43 +000062 unsigned char buffer[64]; /*!< data block being processed */
63
64 unsigned char ipad[64]; /*!< HMAC: inner padding */
65 unsigned char opad[64]; /*!< HMAC: outer padding */
66}
67sha1_context;
68
Paul Bakker5121ce52009-01-03 21:22:43 +000069/**
70 * \brief SHA-1 context setup
71 *
72 * \param ctx context to be initialized
73 */
74void sha1_starts( sha1_context *ctx );
75
76/**
77 * \brief SHA-1 process buffer
78 *
79 * \param ctx SHA-1 context
80 * \param input buffer holding the data
81 * \param ilen length of the input data
82 */
Paul Bakker23986e52011-04-24 08:57:21 +000083void sha1_update( sha1_context *ctx, const unsigned char *input, size_t ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +000084
85/**
86 * \brief SHA-1 final digest
87 *
88 * \param ctx SHA-1 context
89 * \param output SHA-1 checksum result
90 */
91void sha1_finish( sha1_context *ctx, unsigned char output[20] );
92
Paul Bakker90995b52013-06-24 19:20:35 +020093/* Internal use */
94void sha1_process( sha1_context *ctx, const unsigned char data[64] );
95
96#ifdef __cplusplus
97}
98#endif
99
100#else /* POLARSSL_SHA1_ALT */
101#include "sha1_alt.h"
102#endif /* POLARSSL_SHA1_ALT */
103
104#ifdef __cplusplus
105extern "C" {
106#endif
107
Paul Bakker5121ce52009-01-03 21:22:43 +0000108/**
109 * \brief Output = SHA-1( input buffer )
110 *
111 * \param input buffer holding the data
112 * \param ilen length of the input data
113 * \param output SHA-1 checksum result
114 */
Paul Bakker23986e52011-04-24 08:57:21 +0000115void sha1( const unsigned char *input, size_t ilen, unsigned char output[20] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000116
117/**
118 * \brief Output = SHA-1( file contents )
119 *
120 * \param path input file name
121 * \param output SHA-1 checksum result
122 *
Paul Bakker69e095c2011-12-10 21:55:01 +0000123 * \return 0 if successful, or POLARSSL_ERR_SHA1_FILE_IO_ERROR
Paul Bakker5121ce52009-01-03 21:22:43 +0000124 */
Paul Bakkerff60ee62010-03-16 21:09:09 +0000125int sha1_file( const char *path, unsigned char output[20] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000126
127/**
128 * \brief SHA-1 HMAC context setup
129 *
130 * \param ctx HMAC context to be initialized
131 * \param key HMAC secret key
132 * \param keylen length of the HMAC key
133 */
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200134void sha1_hmac_starts( sha1_context *ctx, const unsigned char *key,
135 size_t keylen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000136
137/**
138 * \brief SHA-1 HMAC process buffer
139 *
140 * \param ctx HMAC context
141 * \param input buffer holding the data
142 * \param ilen length of the input data
143 */
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200144void sha1_hmac_update( sha1_context *ctx, const unsigned char *input,
145 size_t ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000146
147/**
148 * \brief SHA-1 HMAC final digest
149 *
150 * \param ctx HMAC context
151 * \param output SHA-1 HMAC checksum result
152 */
153void sha1_hmac_finish( sha1_context *ctx, unsigned char output[20] );
154
155/**
Paul Bakker7d3b6612010-03-21 16:23:13 +0000156 * \brief SHA-1 HMAC context reset
157 *
158 * \param ctx HMAC context to be reset
159 */
160void sha1_hmac_reset( sha1_context *ctx );
161
162/**
Paul Bakker5121ce52009-01-03 21:22:43 +0000163 * \brief Output = HMAC-SHA-1( hmac key, input buffer )
164 *
165 * \param key HMAC secret key
166 * \param keylen length of the HMAC key
167 * \param input buffer holding the data
168 * \param ilen length of the input data
169 * \param output HMAC-SHA-1 result
170 */
Paul Bakker23986e52011-04-24 08:57:21 +0000171void sha1_hmac( const unsigned char *key, size_t keylen,
172 const unsigned char *input, size_t ilen,
Paul Bakker5121ce52009-01-03 21:22:43 +0000173 unsigned char output[20] );
174
175/**
176 * \brief Checkup routine
177 *
178 * \return 0 if successful, or 1 if the test failed
179 */
180int sha1_self_test( int verbose );
181
Paul Bakker5121ce52009-01-03 21:22:43 +0000182#ifdef __cplusplus
183}
184#endif
185
186#endif /* sha1.h */