Add inclusion of internal/evp_int.h to all crypto/ files that need it
[openssl.git] / crypto / evp / m_sha1.c
1 /* crypto/evp/m_sha1.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include "internal/cryptlib.h"
61
62 #include <openssl/evp.h>
63 #include <openssl/objects.h>
64 #include <openssl/sha.h>
65 #ifndef OPENSSL_NO_RSA
66 # include <openssl/rsa.h>
67 #endif
68 #include "internal/evp_int.h"
69
70 static int init(EVP_MD_CTX *ctx)
71 {
72     return SHA1_Init(EVP_MD_CTX_md_data(ctx));
73 }
74
75 static int update(EVP_MD_CTX *ctx, const void *data, size_t count)
76 {
77     return SHA1_Update(EVP_MD_CTX_md_data(ctx), data, count);
78 }
79
80 static int final(EVP_MD_CTX *ctx, unsigned char *md)
81 {
82     return SHA1_Final(md, EVP_MD_CTX_md_data(ctx));
83 }
84
85 static int ctrl(EVP_MD_CTX *ctx, int cmd, int mslen, void *ms)
86 {
87     unsigned char padtmp[40];
88     unsigned char sha1tmp[SHA_DIGEST_LENGTH];
89
90     SHA_CTX *sha1 = EVP_MD_CTX_md_data(ctx);
91
92     if (cmd != EVP_CTRL_SSL3_MASTER_SECRET)
93         return 0;
94
95     /* SSLv3 client auth handling: see RFC-6101 5.6.8 */
96     if (mslen != 48)
97         return 0;
98
99     /* At this point hash contains all handshake messages, update
100      * with master secret and pad_1.
101      */
102
103     if (SHA1_Update(sha1, ms, mslen) <= 0)
104         return 0;
105
106     /* Set padtmp to pad_1 value */
107     memset(padtmp, 0x36, sizeof(padtmp));
108
109     if (!SHA1_Update(sha1, padtmp, sizeof(padtmp)))
110         return 0;
111
112     if (!SHA1_Final(sha1tmp, sha1))
113         return 0;
114
115     /* Reinitialise context */
116
117     if (!SHA1_Init(sha1))
118         return 0;
119
120     if (SHA1_Update(sha1, ms, mslen) <= 0)
121         return 0;
122
123     /* Set padtmp to pad_2 value */
124     memset(padtmp, 0x5c, sizeof(padtmp));
125
126     if (!SHA1_Update(sha1, padtmp, sizeof(padtmp)))
127         return 0;
128
129     if (!SHA1_Update(sha1, sha1tmp, sizeof(sha1tmp)))
130         return 0;
131
132     /* Now when ctx is finalised it will return the SSL v3 hash value */
133     OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
134
135     return 1;
136
137 }
138
139 static const EVP_MD sha1_md = {
140     NID_sha1,
141     NID_sha1WithRSAEncryption,
142     SHA_DIGEST_LENGTH,
143     EVP_MD_FLAG_DIGALGID_ABSENT,
144     init,
145     update,
146     final,
147     NULL,
148     NULL,
149     SHA_CBLOCK,
150     sizeof(EVP_MD *) + sizeof(SHA_CTX),
151     ctrl
152 };
153
154 const EVP_MD *EVP_sha1(void)
155 {
156     return (&sha1_md);
157 }
158
159 static int init224(EVP_MD_CTX *ctx)
160 {
161     return SHA224_Init(EVP_MD_CTX_md_data(ctx));
162 }
163
164 static int init256(EVP_MD_CTX *ctx)
165 {
166     return SHA256_Init(EVP_MD_CTX_md_data(ctx));
167 }
168
169 /*
170  * Even though there're separate SHA224_[Update|Final], we call
171  * SHA256 functions even in SHA224 context. This is what happens
172  * there anyway, so we can spare few CPU cycles:-)
173  */
174 static int update256(EVP_MD_CTX *ctx, const void *data, size_t count)
175 {
176     return SHA256_Update(EVP_MD_CTX_md_data(ctx), data, count);
177 }
178
179 static int final256(EVP_MD_CTX *ctx, unsigned char *md)
180 {
181     return SHA256_Final(md, EVP_MD_CTX_md_data(ctx));
182 }
183
184 static const EVP_MD sha224_md = {
185     NID_sha224,
186     NID_sha224WithRSAEncryption,
187     SHA224_DIGEST_LENGTH,
188     EVP_MD_FLAG_DIGALGID_ABSENT,
189     init224,
190     update256,
191     final256,
192     NULL,
193     NULL,
194     SHA256_CBLOCK,
195     sizeof(EVP_MD *) + sizeof(SHA256_CTX),
196 };
197
198 const EVP_MD *EVP_sha224(void)
199 {
200     return (&sha224_md);
201 }
202
203 static const EVP_MD sha256_md = {
204     NID_sha256,
205     NID_sha256WithRSAEncryption,
206     SHA256_DIGEST_LENGTH,
207     EVP_MD_FLAG_DIGALGID_ABSENT,
208     init256,
209     update256,
210     final256,
211     NULL,
212     NULL,
213     SHA256_CBLOCK,
214     sizeof(EVP_MD *) + sizeof(SHA256_CTX),
215 };
216
217 const EVP_MD *EVP_sha256(void)
218 {
219     return (&sha256_md);
220 }
221
222 static int init384(EVP_MD_CTX *ctx)
223 {
224     return SHA384_Init(EVP_MD_CTX_md_data(ctx));
225 }
226
227 static int init512(EVP_MD_CTX *ctx)
228 {
229     return SHA512_Init(EVP_MD_CTX_md_data(ctx));
230 }
231
232 /* See comment in SHA224/256 section */
233 static int update512(EVP_MD_CTX *ctx, const void *data, size_t count)
234 {
235     return SHA512_Update(EVP_MD_CTX_md_data(ctx), data, count);
236 }
237
238 static int final512(EVP_MD_CTX *ctx, unsigned char *md)
239 {
240     return SHA512_Final(md, EVP_MD_CTX_md_data(ctx));
241 }
242
243 static const EVP_MD sha384_md = {
244     NID_sha384,
245     NID_sha384WithRSAEncryption,
246     SHA384_DIGEST_LENGTH,
247     EVP_MD_FLAG_DIGALGID_ABSENT,
248     init384,
249     update512,
250     final512,
251     NULL,
252     NULL,
253     SHA512_CBLOCK,
254     sizeof(EVP_MD *) + sizeof(SHA512_CTX),
255 };
256
257 const EVP_MD *EVP_sha384(void)
258 {
259     return (&sha384_md);
260 }
261
262 static const EVP_MD sha512_md = {
263     NID_sha512,
264     NID_sha512WithRSAEncryption,
265     SHA512_DIGEST_LENGTH,
266     EVP_MD_FLAG_DIGALGID_ABSENT,
267     init512,
268     update512,
269     final512,
270     NULL,
271     NULL,
272     SHA512_CBLOCK,
273     sizeof(EVP_MD *) + sizeof(SHA512_CTX),
274 };
275
276 const EVP_MD *EVP_sha512(void)
277 {
278     return (&sha512_md);
279 }