4 * Copyright (C) 2006-2009, Paul Bakker <polarssl_maintainer at polarssl.org>
7 * Joined copyright on original XySSL code with: Christophe Devine
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 /* $Cambridge: exim/src/src/pdkim/sha1.h,v 1.3 2009/12/07 13:05:07 tom Exp $ */
26 #ifndef POLARSSL_SHA1_H
27 #define POLARSSL_SHA1_H
30 * \brief SHA-1 context structure
33 #ifndef HAVE_SHA1_CONTEXT
34 #define HAVE_SHA1_CONTEXT
35 typedef struct sha1_context sha1_context;
40 unsigned long total[2]; /*!< number of bytes processed */
41 unsigned long state[5]; /*!< intermediate digest state */
42 unsigned char buffer[64]; /*!< data block being processed */
44 unsigned char ipad[64]; /*!< HMAC: inner padding */
45 unsigned char opad[64]; /*!< HMAC: outer padding */
54 * \brief SHA-1 context setup
56 * \param ctx context to be initialized
58 void sha1_starts( sha1_context *ctx );
61 * \brief SHA-1 process buffer
63 * \param ctx SHA-1 context
64 * \param input buffer holding the data
65 * \param ilen length of the input data
67 void sha1_update( sha1_context *ctx, unsigned char *input, int ilen );
70 * \brief SHA-1 final digest
72 * \param ctx SHA-1 context
73 * \param output SHA-1 checksum result
75 void sha1_finish( sha1_context *ctx, unsigned char output[20] );
78 * \brief Output = SHA-1( input buffer )
80 * \param input buffer holding the data
81 * \param ilen length of the input data
82 * \param output SHA-1 checksum result
84 void sha1( unsigned char *input, int ilen, unsigned char output[20] );
87 * \brief Output = SHA-1( file contents )
89 * \param path input file name
90 * \param output SHA-1 checksum result
92 * \return 0 if successful, 1 if fopen failed,
93 * or 2 if fread failed
95 int sha1_file( char *path, unsigned char output[20] );
98 * \brief SHA-1 HMAC context setup
100 * \param ctx HMAC context to be initialized
101 * \param key HMAC secret key
102 * \param keylen length of the HMAC key
104 void sha1_hmac_starts( sha1_context *ctx, unsigned char *key, int keylen );
107 * \brief SHA-1 HMAC process buffer
109 * \param ctx HMAC context
110 * \param input buffer holding the data
111 * \param ilen length of the input data
113 void sha1_hmac_update( sha1_context *ctx, unsigned char *input, int ilen );
116 * \brief SHA-1 HMAC final digest
118 * \param ctx HMAC context
119 * \param output SHA-1 HMAC checksum result
121 void sha1_hmac_finish( sha1_context *ctx, unsigned char output[20] );
124 * \brief Output = HMAC-SHA-1( hmac key, input buffer )
126 * \param key HMAC secret key
127 * \param keylen length of the HMAC key
128 * \param input buffer holding the data
129 * \param ilen length of the input data
130 * \param output HMAC-SHA-1 result
132 void sha1_hmac( unsigned char *key, int keylen,
133 unsigned char *input, int ilen,
134 unsigned char output[20] );