Coverage Report

Created: 2025-08-28 07:07

/src/openssl30/include/crypto/md32_common.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1999-2018 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
 * This is a generic 32 bit "collector" for message digest algorithms.
12
 * Whenever needed it collects input character stream into chunks of
13
 * 32 bit values and invokes a block function that performs actual hash
14
 * calculations.
15
 *
16
 * Porting guide.
17
 *
18
 * Obligatory macros:
19
 *
20
 * DATA_ORDER_IS_BIG_ENDIAN or DATA_ORDER_IS_LITTLE_ENDIAN
21
 *      this macro defines byte order of input stream.
22
 * HASH_CBLOCK
23
 *      size of a unit chunk HASH_BLOCK operates on.
24
 * HASH_LONG
25
 *      has to be at least 32 bit wide.
26
 * HASH_CTX
27
 *      context structure that at least contains following
28
 *      members:
29
 *              typedef struct {
30
 *                      ...
31
 *                      HASH_LONG       Nl,Nh;
32
 *                      either {
33
 *                      HASH_LONG       data[HASH_LBLOCK];
34
 *                      unsigned char   data[HASH_CBLOCK];
35
 *                      };
36
 *                      unsigned int    num;
37
 *                      ...
38
 *                      } HASH_CTX;
39
 *      data[] vector is expected to be zeroed upon first call to
40
 *      HASH_UPDATE.
41
 * HASH_UPDATE
42
 *      name of "Update" function, implemented here.
43
 * HASH_TRANSFORM
44
 *      name of "Transform" function, implemented here.
45
 * HASH_FINAL
46
 *      name of "Final" function, implemented here.
47
 * HASH_BLOCK_DATA_ORDER
48
 *      name of "block" function capable of treating *unaligned* input
49
 *      message in original (data) byte order, implemented externally.
50
 * HASH_MAKE_STRING
51
 *      macro converting context variables to an ASCII hash string.
52
 *
53
 * MD5 example:
54
 *
55
 *      #define DATA_ORDER_IS_LITTLE_ENDIAN
56
 *
57
 *      #define HASH_LONG               MD5_LONG
58
 *      #define HASH_CTX                MD5_CTX
59
 *      #define HASH_CBLOCK             MD5_CBLOCK
60
 *      #define HASH_UPDATE             MD5_Update
61
 *      #define HASH_TRANSFORM          MD5_Transform
62
 *      #define HASH_FINAL              MD5_Final
63
 *      #define HASH_BLOCK_DATA_ORDER   md5_block_data_order
64
 */
65
66
#include <openssl/crypto.h>
67
68
#if !defined(DATA_ORDER_IS_BIG_ENDIAN) && !defined(DATA_ORDER_IS_LITTLE_ENDIAN)
69
# error "DATA_ORDER must be defined!"
70
#endif
71
72
#ifndef HASH_CBLOCK
73
# error "HASH_CBLOCK must be defined!"
74
#endif
75
#ifndef HASH_LONG
76
# error "HASH_LONG must be defined!"
77
#endif
78
#ifndef HASH_CTX
79
# error "HASH_CTX must be defined!"
80
#endif
81
82
#ifndef HASH_UPDATE
83
# error "HASH_UPDATE must be defined!"
84
#endif
85
#ifndef HASH_TRANSFORM
86
# error "HASH_TRANSFORM must be defined!"
87
#endif
88
#ifndef HASH_FINAL
89
# error "HASH_FINAL must be defined!"
90
#endif
91
92
#ifndef HASH_BLOCK_DATA_ORDER
93
# error "HASH_BLOCK_DATA_ORDER must be defined!"
94
#endif
95
96
696M
#define ROTATE(a,n)     (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
97
98
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
99
100
351k
# define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))<<24),          \
101
351k
                         l|=(((unsigned long)(*((c)++)))<<16),          \
102
351k
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
103
351k
                         l|=(((unsigned long)(*((c)++)))    )           )
104
9.97M
# define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)>>24)&0xff),      \
105
9.97M
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
106
9.97M
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
107
9.97M
                         *((c)++)=(unsigned char)(((l)    )&0xff),      \
108
9.97M
                         l)
109
110
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
111
112
34.2M
# define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))    ),          \
113
34.2M
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
114
34.2M
                         l|=(((unsigned long)(*((c)++)))<<16),          \
115
34.2M
                         l|=(((unsigned long)(*((c)++)))<<24)           )
116
18.2M
# define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)    )&0xff),      \
117
18.2M
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
118
18.2M
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
119
18.2M
                         *((c)++)=(unsigned char)(((l)>>24)&0xff),      \
120
18.2M
                         l)
121
122
#endif
123
124
/*
125
 * Time for some action :-)
126
 */
127
128
int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len)
129
1.14G
{
130
1.14G
    const unsigned char *data = data_;
131
1.14G
    unsigned char *p;
132
1.14G
    HASH_LONG l;
133
1.14G
    size_t n;
134
135
1.14G
    if (len == 0)
136
0
        return 1;
137
138
1.14G
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
1.14G
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
1.14G
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
1.14G
    c->Nl = l;
144
145
1.14G
    n = c->num;
146
1.14G
    if (n != 0) {
147
569M
        p = (unsigned char *)c->data;
148
149
569M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
284M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
284M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
284M
            n = HASH_CBLOCK - n;
153
284M
            data += n;
154
284M
            len -= n;
155
284M
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
284M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
284M
        } else {
164
284M
            memcpy(p + n, data, len);
165
284M
            c->num += (unsigned int)len;
166
284M
            return 1;
167
284M
        }
168
569M
    }
169
170
858M
    n = len / HASH_CBLOCK;
171
858M
    if (n > 0) {
172
1.68M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.68M
        n *= HASH_CBLOCK;
174
1.68M
        data += n;
175
1.68M
        len -= n;
176
1.68M
    }
177
178
858M
    if (len != 0) {
179
573M
        p = (unsigned char *)c->data;
180
573M
        c->num = (unsigned int)len;
181
573M
        memcpy(p, data, len);
182
573M
    }
183
858M
    return 1;
184
1.14G
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
129
615k
{
130
615k
    const unsigned char *data = data_;
131
615k
    unsigned char *p;
132
615k
    HASH_LONG l;
133
615k
    size_t n;
134
135
615k
    if (len == 0)
136
0
        return 1;
137
138
615k
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
615k
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
615k
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
615k
    c->Nl = l;
144
145
615k
    n = c->num;
146
615k
    if (n != 0) {
147
205k
        p = (unsigned char *)c->data;
148
149
205k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
94.6k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
94.6k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
94.6k
            n = HASH_CBLOCK - n;
153
94.6k
            data += n;
154
94.6k
            len -= n;
155
94.6k
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
94.6k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
110k
        } else {
164
110k
            memcpy(p + n, data, len);
165
110k
            c->num += (unsigned int)len;
166
110k
            return 1;
167
110k
        }
168
205k
    }
169
170
504k
    n = len / HASH_CBLOCK;
171
504k
    if (n > 0) {
172
60.3k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
60.3k
        n *= HASH_CBLOCK;
174
60.3k
        data += n;
175
60.3k
        len -= n;
176
60.3k
    }
177
178
504k
    if (len != 0) {
179
464k
        p = (unsigned char *)c->data;
180
464k
        c->num = (unsigned int)len;
181
464k
        memcpy(p, data, len);
182
464k
    }
183
504k
    return 1;
184
615k
}
RIPEMD160_Update
Line
Count
Source
129
1.56M
{
130
1.56M
    const unsigned char *data = data_;
131
1.56M
    unsigned char *p;
132
1.56M
    HASH_LONG l;
133
1.56M
    size_t n;
134
135
1.56M
    if (len == 0)
136
0
        return 1;
137
138
1.56M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
1.56M
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
1.56M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
1.56M
    c->Nl = l;
144
145
1.56M
    n = c->num;
146
1.56M
    if (n != 0) {
147
396
        p = (unsigned char *)c->data;
148
149
396
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
136
            memcpy(p + n, data, HASH_CBLOCK - n);
151
136
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
136
            n = HASH_CBLOCK - n;
153
136
            data += n;
154
136
            len -= n;
155
136
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
136
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
260
        } else {
164
260
            memcpy(p + n, data, len);
165
260
            c->num += (unsigned int)len;
166
260
            return 1;
167
260
        }
168
396
    }
169
170
1.56M
    n = len / HASH_CBLOCK;
171
1.56M
    if (n > 0) {
172
1.60k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.60k
        n *= HASH_CBLOCK;
174
1.60k
        data += n;
175
1.60k
        len -= n;
176
1.60k
    }
177
178
1.56M
    if (len != 0) {
179
1.55M
        p = (unsigned char *)c->data;
180
1.55M
        c->num = (unsigned int)len;
181
1.55M
        memcpy(p, data, len);
182
1.55M
    }
183
1.56M
    return 1;
184
1.56M
}
SHA1_Update
Line
Count
Source
129
1.26M
{
130
1.26M
    const unsigned char *data = data_;
131
1.26M
    unsigned char *p;
132
1.26M
    HASH_LONG l;
133
1.26M
    size_t n;
134
135
1.26M
    if (len == 0)
136
0
        return 1;
137
138
1.26M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
1.26M
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
1.26M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
1.26M
    c->Nl = l;
144
145
1.26M
    n = c->num;
146
1.26M
    if (n != 0) {
147
243k
        p = (unsigned char *)c->data;
148
149
243k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
102k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
102k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
102k
            n = HASH_CBLOCK - n;
153
102k
            data += n;
154
102k
            len -= n;
155
102k
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
102k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
140k
        } else {
164
140k
            memcpy(p + n, data, len);
165
140k
            c->num += (unsigned int)len;
166
140k
            return 1;
167
140k
        }
168
243k
    }
169
170
1.12M
    n = len / HASH_CBLOCK;
171
1.12M
    if (n > 0) {
172
390k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
390k
        n *= HASH_CBLOCK;
174
390k
        data += n;
175
390k
        len -= n;
176
390k
    }
177
178
1.12M
    if (len != 0) {
179
1.01M
        p = (unsigned char *)c->data;
180
1.01M
        c->num = (unsigned int)len;
181
1.01M
        memcpy(p, data, len);
182
1.01M
    }
183
1.12M
    return 1;
184
1.26M
}
SHA256_Update
Line
Count
Source
129
1.14G
{
130
1.14G
    const unsigned char *data = data_;
131
1.14G
    unsigned char *p;
132
1.14G
    HASH_LONG l;
133
1.14G
    size_t n;
134
135
1.14G
    if (len == 0)
136
0
        return 1;
137
138
1.14G
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
1.14G
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
1.14G
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
1.14G
    c->Nl = l;
144
145
1.14G
    n = c->num;
146
1.14G
    if (n != 0) {
147
569M
        p = (unsigned char *)c->data;
148
149
569M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
284M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
284M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
284M
            n = HASH_CBLOCK - n;
153
284M
            data += n;
154
284M
            len -= n;
155
284M
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
284M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
284M
        } else {
164
284M
            memcpy(p + n, data, len);
165
284M
            c->num += (unsigned int)len;
166
284M
            return 1;
167
284M
        }
168
569M
    }
169
170
855M
    n = len / HASH_CBLOCK;
171
855M
    if (n > 0) {
172
1.23M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.23M
        n *= HASH_CBLOCK;
174
1.23M
        data += n;
175
1.23M
        len -= n;
176
1.23M
    }
177
178
855M
    if (len != 0) {
179
570M
        p = (unsigned char *)c->data;
180
570M
        c->num = (unsigned int)len;
181
570M
        memcpy(p, data, len);
182
570M
    }
183
855M
    return 1;
184
1.14G
}
ossl_sm3_update
Line
Count
Source
129
3.86k
{
130
3.86k
    const unsigned char *data = data_;
131
3.86k
    unsigned char *p;
132
3.86k
    HASH_LONG l;
133
3.86k
    size_t n;
134
135
3.86k
    if (len == 0)
136
0
        return 1;
137
138
3.86k
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
3.86k
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
3.86k
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
3.86k
    c->Nl = l;
144
145
3.86k
    n = c->num;
146
3.86k
    if (n != 0) {
147
396
        p = (unsigned char *)c->data;
148
149
396
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
145
            memcpy(p + n, data, HASH_CBLOCK - n);
151
145
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
145
            n = HASH_CBLOCK - n;
153
145
            data += n;
154
145
            len -= n;
155
145
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
145
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
251
        } else {
164
251
            memcpy(p + n, data, len);
165
251
            c->num += (unsigned int)len;
166
251
            return 1;
167
251
        }
168
396
    }
169
170
3.60k
    n = len / HASH_CBLOCK;
171
3.60k
    if (n > 0) {
172
1.62k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.62k
        n *= HASH_CBLOCK;
174
1.62k
        data += n;
175
1.62k
        len -= n;
176
1.62k
    }
177
178
3.60k
    if (len != 0) {
179
2.07k
        p = (unsigned char *)c->data;
180
2.07k
        c->num = (unsigned int)len;
181
2.07k
        memcpy(p, data, len);
182
2.07k
    }
183
3.60k
    return 1;
184
3.86k
}
185
186
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
187
1.15M
{
188
1.15M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
1.15M
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
SHA1_Transform
Line
Count
Source
187
861k
{
188
861k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
861k
}
SHA256_Transform
Line
Count
Source
187
290k
{
188
290k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
290k
}
Unexecuted instantiation: ossl_sm3_transform
190
191
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
192
4.07M
{
193
4.07M
    unsigned char *p = (unsigned char *)c->data;
194
4.07M
    size_t n = c->num;
195
196
4.07M
    p[n] = 0x80;                /* there is always room for one */
197
4.07M
    n++;
198
199
4.07M
    if (n > (HASH_CBLOCK - 8)) {
200
79.2k
        memset(p + n, 0, HASH_CBLOCK - n);
201
79.2k
        n = 0;
202
79.2k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
79.2k
    }
204
4.07M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
4.07M
    p += HASH_CBLOCK - 8;
207
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
1.39M
    (void)HOST_l2c(c->Nh, p);
209
1.39M
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
2.68M
    (void)HOST_l2c(c->Nl, p);
212
2.68M
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
4.07M
    p -= HASH_CBLOCK;
215
4.07M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
4.07M
    c->num = 0;
217
4.07M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
4.07M
    HASH_MAKE_STRING(c, md);
223
79.8k
#endif
224
225
79.8k
    return 1;
226
4.07M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
192
573k
{
193
573k
    unsigned char *p = (unsigned char *)c->data;
194
573k
    size_t n = c->num;
195
196
573k
    p[n] = 0x80;                /* there is always room for one */
197
573k
    n++;
198
199
573k
    if (n > (HASH_CBLOCK - 8)) {
200
6.41k
        memset(p + n, 0, HASH_CBLOCK - n);
201
6.41k
        n = 0;
202
6.41k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
6.41k
    }
204
573k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
573k
    p += HASH_CBLOCK - 8;
207
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
    (void)HOST_l2c(c->Nh, p);
209
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
573k
    (void)HOST_l2c(c->Nl, p);
212
573k
    (void)HOST_l2c(c->Nh, p);
213
573k
#endif
214
573k
    p -= HASH_CBLOCK;
215
573k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
573k
    c->num = 0;
217
573k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
573k
    HASH_MAKE_STRING(c, md);
223
573k
#endif
224
225
573k
    return 1;
226
573k
}
RIPEMD160_Final
Line
Count
Source
192
2.11M
{
193
2.11M
    unsigned char *p = (unsigned char *)c->data;
194
2.11M
    size_t n = c->num;
195
196
2.11M
    p[n] = 0x80;                /* there is always room for one */
197
2.11M
    n++;
198
199
2.11M
    if (n > (HASH_CBLOCK - 8)) {
200
139
        memset(p + n, 0, HASH_CBLOCK - n);
201
139
        n = 0;
202
139
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
139
    }
204
2.11M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
2.11M
    p += HASH_CBLOCK - 8;
207
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
    (void)HOST_l2c(c->Nh, p);
209
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
2.11M
    (void)HOST_l2c(c->Nl, p);
212
2.11M
    (void)HOST_l2c(c->Nh, p);
213
2.11M
#endif
214
2.11M
    p -= HASH_CBLOCK;
215
2.11M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
2.11M
    c->num = 0;
217
2.11M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
2.11M
    HASH_MAKE_STRING(c, md);
223
2.11M
#endif
224
225
2.11M
    return 1;
226
2.11M
}
SHA1_Final
Line
Count
Source
192
1.31M
{
193
1.31M
    unsigned char *p = (unsigned char *)c->data;
194
1.31M
    size_t n = c->num;
195
196
1.31M
    p[n] = 0x80;                /* there is always room for one */
197
1.31M
    n++;
198
199
1.31M
    if (n > (HASH_CBLOCK - 8)) {
200
72.2k
        memset(p + n, 0, HASH_CBLOCK - n);
201
72.2k
        n = 0;
202
72.2k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
72.2k
    }
204
1.31M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
1.31M
    p += HASH_CBLOCK - 8;
207
1.31M
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
1.31M
    (void)HOST_l2c(c->Nh, p);
209
1.31M
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
    (void)HOST_l2c(c->Nl, p);
212
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
1.31M
    p -= HASH_CBLOCK;
215
1.31M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
1.31M
    c->num = 0;
217
1.31M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
1.31M
    HASH_MAKE_STRING(c, md);
223
1.31M
#endif
224
225
1.31M
    return 1;
226
1.31M
}
SHA256_Final
Line
Count
Source
192
79.8k
{
193
79.8k
    unsigned char *p = (unsigned char *)c->data;
194
79.8k
    size_t n = c->num;
195
196
79.8k
    p[n] = 0x80;                /* there is always room for one */
197
79.8k
    n++;
198
199
79.8k
    if (n > (HASH_CBLOCK - 8)) {
200
385
        memset(p + n, 0, HASH_CBLOCK - n);
201
385
        n = 0;
202
385
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
385
    }
204
79.8k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
79.8k
    p += HASH_CBLOCK - 8;
207
79.8k
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
79.8k
    (void)HOST_l2c(c->Nh, p);
209
79.8k
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
    (void)HOST_l2c(c->Nl, p);
212
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
79.8k
    p -= HASH_CBLOCK;
215
79.8k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
79.8k
    c->num = 0;
217
79.8k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
79.8k
    HASH_MAKE_STRING(c, md);
223
79.8k
#endif
224
225
79.8k
    return 1;
226
79.8k
}
ossl_sm3_final
Line
Count
Source
192
1.95k
{
193
1.95k
    unsigned char *p = (unsigned char *)c->data;
194
1.95k
    size_t n = c->num;
195
196
1.95k
    p[n] = 0x80;                /* there is always room for one */
197
1.95k
    n++;
198
199
1.95k
    if (n > (HASH_CBLOCK - 8)) {
200
60
        memset(p + n, 0, HASH_CBLOCK - n);
201
60
        n = 0;
202
60
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
60
    }
204
1.95k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
1.95k
    p += HASH_CBLOCK - 8;
207
1.95k
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
1.95k
    (void)HOST_l2c(c->Nh, p);
209
1.95k
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
    (void)HOST_l2c(c->Nl, p);
212
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
1.95k
    p -= HASH_CBLOCK;
215
1.95k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
1.95k
    c->num = 0;
217
1.95k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
1.95k
    HASH_MAKE_STRING(c, md);
223
1.95k
#endif
224
225
1.95k
    return 1;
226
1.95k
}
227
228
#ifndef MD32_REG_T
229
# if defined(__alpha) || defined(__sparcv9) || defined(__mips)
230
#  define MD32_REG_T long
231
/*
232
 * This comment was originally written for MD5, which is why it
233
 * discusses A-D. But it basically applies to all 32-bit digests,
234
 * which is why it was moved to common header file.
235
 *
236
 * In case you wonder why A-D are declared as long and not
237
 * as MD5_LONG. Doing so results in slight performance
238
 * boost on LP64 architectures. The catch is we don't
239
 * really care if 32 MSBs of a 64-bit register get polluted
240
 * with eventual overflows as we *save* only 32 LSBs in
241
 * *either* case. Now declaring 'em long excuses the compiler
242
 * from keeping 32 MSBs zeroed resulting in 13% performance
243
 * improvement under SPARC Solaris7/64 and 5% under AlphaLinux.
244
 * Well, to be honest it should say that this *prevents*
245
 * performance degradation.
246
 */
247
# else
248
/*
249
 * Above is not absolute and there are LP64 compilers that
250
 * generate better code if MD32_REG_T is defined int. The above
251
 * pre-processor condition reflects the circumstances under which
252
 * the conclusion was made and is subject to further extension.
253
 */
254
#  define MD32_REG_T int
255
# endif
256
#endif