/src/openssl/crypto/md5/md5_sha1.c
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  |  * Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.  | 
3  |  |  *  | 
4  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use  | 
5  |  |  * this file except in compliance with the License.  You can obtain a copy  | 
6  |  |  * in the file LICENSE in the source distribution or at  | 
7  |  |  * https://www.openssl.org/source/license.html  | 
8  |  |  */  | 
9  |  |  | 
10  |  | /*  | 
11  |  |  * MD5 and SHA-1 low level APIs are deprecated for public use, but still ok for  | 
12  |  |  * internal use.  | 
13  |  |  */  | 
14  |  | #include "internal/deprecated.h"  | 
15  |  |  | 
16  |  | #include <string.h>  | 
17  |  | #include "prov/md5_sha1.h"  | 
18  |  | #include <openssl/evp.h>  | 
19  |  |  | 
20  |  | int ossl_md5_sha1_init(MD5_SHA1_CTX *mctx)  | 
21  | 0  | { | 
22  | 0  |     if (!MD5_Init(&mctx->md5))  | 
23  | 0  |         return 0;  | 
24  | 0  |     return SHA1_Init(&mctx->sha1);  | 
25  | 0  | }  | 
26  |  |  | 
27  |  | int ossl_md5_sha1_update(MD5_SHA1_CTX *mctx, const void *data, size_t count)  | 
28  | 0  | { | 
29  | 0  |     if (!MD5_Update(&mctx->md5, data, count))  | 
30  | 0  |         return 0;  | 
31  | 0  |     return SHA1_Update(&mctx->sha1, data, count);  | 
32  | 0  | }  | 
33  |  |  | 
34  |  | int ossl_md5_sha1_final(unsigned char *md, MD5_SHA1_CTX *mctx)  | 
35  | 0  | { | 
36  | 0  |     if (!MD5_Final(md, &mctx->md5))  | 
37  | 0  |         return 0;  | 
38  | 0  |     return SHA1_Final(md + MD5_DIGEST_LENGTH, &mctx->sha1);  | 
39  | 0  | }  | 
40  |  |  | 
41  |  | int ossl_md5_sha1_ctrl(MD5_SHA1_CTX *mctx, int cmd, int mslen, void *ms)  | 
42  | 0  | { | 
43  | 0  |     unsigned char padtmp[48];  | 
44  | 0  |     unsigned char md5tmp[MD5_DIGEST_LENGTH];  | 
45  | 0  |     unsigned char sha1tmp[SHA_DIGEST_LENGTH];  | 
46  |  | 
  | 
47  | 0  |     if (cmd != EVP_CTRL_SSL3_MASTER_SECRET)  | 
48  | 0  |         return -2;  | 
49  |  |  | 
50  | 0  |     if (mctx == NULL)  | 
51  | 0  |         return 0;  | 
52  |  |  | 
53  |  |     /* SSLv3 client auth handling: see RFC-6101 5.6.8 */  | 
54  | 0  |     if (mslen != 48)  | 
55  | 0  |         return 0;  | 
56  |  |  | 
57  |  |     /* At this point hash contains all handshake messages, update  | 
58  |  |      * with master secret and pad_1.  | 
59  |  |      */  | 
60  |  |  | 
61  | 0  |     if (ossl_md5_sha1_update(mctx, ms, mslen) <= 0)  | 
62  | 0  |         return 0;  | 
63  |  |  | 
64  |  |     /* Set padtmp to pad_1 value */  | 
65  | 0  |     memset(padtmp, 0x36, sizeof(padtmp));  | 
66  |  | 
  | 
67  | 0  |     if (!MD5_Update(&mctx->md5, padtmp, sizeof(padtmp)))  | 
68  | 0  |         return 0;  | 
69  |  |  | 
70  | 0  |     if (!MD5_Final(md5tmp, &mctx->md5))  | 
71  | 0  |         return 0;  | 
72  |  |  | 
73  | 0  |     if (!SHA1_Update(&mctx->sha1, padtmp, 40))  | 
74  | 0  |         return 0;  | 
75  |  |  | 
76  | 0  |     if (!SHA1_Final(sha1tmp, &mctx->sha1))  | 
77  | 0  |         return 0;  | 
78  |  |  | 
79  |  |     /* Reinitialise context */  | 
80  |  |  | 
81  | 0  |     if (!ossl_md5_sha1_init(mctx))  | 
82  | 0  |         return 0;  | 
83  |  |  | 
84  | 0  |     if (ossl_md5_sha1_update(mctx, ms, mslen) <= 0)  | 
85  | 0  |         return 0;  | 
86  |  |  | 
87  |  |     /* Set padtmp to pad_2 value */  | 
88  | 0  |     memset(padtmp, 0x5c, sizeof(padtmp));  | 
89  |  | 
  | 
90  | 0  |     if (!MD5_Update(&mctx->md5, padtmp, sizeof(padtmp)))  | 
91  | 0  |         return 0;  | 
92  |  |  | 
93  | 0  |     if (!MD5_Update(&mctx->md5, md5tmp, sizeof(md5tmp)))  | 
94  | 0  |         return 0;  | 
95  |  |  | 
96  | 0  |     if (!SHA1_Update(&mctx->sha1, padtmp, 40))  | 
97  | 0  |         return 0;  | 
98  |  |  | 
99  | 0  |     if (!SHA1_Update(&mctx->sha1, sha1tmp, sizeof(sha1tmp)))  | 
100  | 0  |         return 0;  | 
101  |  |  | 
102  |  |     /* Now when ctx is finalised it will return the SSL v3 hash value */  | 
103  |  |  | 
104  | 0  |     OPENSSL_cleanse(md5tmp, sizeof(md5tmp));  | 
105  | 0  |     OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));  | 
106  |  | 
  | 
107  | 0  |     return 1;  | 
108  | 0  | }  |