blob: 2f62ed1d5eaaff7a9ec53f0dc0a34d7f972ce20a [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file md5.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker77b385e2009-07-28 17:23:11 +00004 * Copyright (C) 2006-2009, Paul Bakker <polarssl_maintainer at polarssl.org>
5 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00006 *
Paul Bakker77b385e2009-07-28 17:23:11 +00007 * Joined copyright on original XySSL code with: Christophe Devine
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00008 *
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.
13 *
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.
18 *
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.
Paul Bakker5121ce52009-01-03 21:22:43 +000022 */
Paul Bakker40e46942009-01-03 21:51:57 +000023#ifndef POLARSSL_MD5_H
24#define POLARSSL_MD5_H
Paul Bakker5121ce52009-01-03 21:22:43 +000025
26/**
27 * \brief MD5 context structure
28 */
29typedef struct
30{
31 unsigned long total[2]; /*!< number of bytes processed */
32 unsigned long state[4]; /*!< intermediate digest state */
33 unsigned char buffer[64]; /*!< data block being processed */
34
35 unsigned char ipad[64]; /*!< HMAC: inner padding */
36 unsigned char opad[64]; /*!< HMAC: outer padding */
37}
38md5_context;
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44/**
45 * \brief MD5 context setup
46 *
47 * \param ctx context to be initialized
48 */
49void md5_starts( md5_context *ctx );
50
51/**
52 * \brief MD5 process buffer
53 *
54 * \param ctx MD5 context
55 * \param input buffer holding the data
56 * \param ilen length of the input data
57 */
Paul Bakkerff60ee62010-03-16 21:09:09 +000058void md5_update( md5_context *ctx, const unsigned char *input, int ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +000059
60/**
61 * \brief MD5 final digest
62 *
63 * \param ctx MD5 context
64 * \param output MD5 checksum result
65 */
66void md5_finish( md5_context *ctx, unsigned char output[16] );
67
68/**
69 * \brief Output = MD5( input buffer )
70 *
71 * \param input buffer holding the data
72 * \param ilen length of the input data
73 * \param output MD5 checksum result
74 */
Paul Bakkerff60ee62010-03-16 21:09:09 +000075void md5( const unsigned char *input, int ilen, unsigned char output[16] );
Paul Bakker5121ce52009-01-03 21:22:43 +000076
77/**
78 * \brief Output = MD5( file contents )
79 *
80 * \param path input file name
81 * \param output MD5 checksum result
82 *
83 * \return 0 if successful, 1 if fopen failed,
84 * or 2 if fread failed
85 */
Paul Bakkerff60ee62010-03-16 21:09:09 +000086int md5_file( const char *path, unsigned char output[16] );
Paul Bakker5121ce52009-01-03 21:22:43 +000087
88/**
89 * \brief MD5 HMAC context setup
90 *
91 * \param ctx HMAC context to be initialized
92 * \param key HMAC secret key
93 * \param keylen length of the HMAC key
94 */
Paul Bakkerff60ee62010-03-16 21:09:09 +000095void md5_hmac_starts( md5_context *ctx,
96 const unsigned char *key, int keylen );
Paul Bakker5121ce52009-01-03 21:22:43 +000097
98/**
99 * \brief MD5 HMAC process buffer
100 *
101 * \param ctx HMAC context
102 * \param input buffer holding the data
103 * \param ilen length of the input data
104 */
Paul Bakkerff60ee62010-03-16 21:09:09 +0000105void md5_hmac_update( md5_context *ctx,
106 const unsigned char *input, int ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000107
108/**
109 * \brief MD5 HMAC final digest
110 *
111 * \param ctx HMAC context
112 * \param output MD5 HMAC checksum result
113 */
114void md5_hmac_finish( md5_context *ctx, unsigned char output[16] );
115
116/**
117 * \brief Output = HMAC-MD5( hmac key, input buffer )
118 *
119 * \param key HMAC secret key
120 * \param keylen length of the HMAC key
121 * \param input buffer holding the data
122 * \param ilen length of the input data
123 * \param output HMAC-MD5 result
124 */
Paul Bakkerff60ee62010-03-16 21:09:09 +0000125void md5_hmac( const unsigned char *key, int keylen,
126 const unsigned char *input, int ilen,
Paul Bakker5121ce52009-01-03 21:22:43 +0000127 unsigned char output[16] );
128
129/**
130 * \brief Checkup routine
131 *
132 * \return 0 if successful, or 1 if the test failed
133 */
134int md5_self_test( int verbose );
135
136#ifdef __cplusplus
137}
138#endif
139
140#endif /* md5.h */