Coverage Report

Created: 2026-05-24 07:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl30/include/crypto/md32_common.h
Line
Count
Source
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
1.36G
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
97
98
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
99
100
9.55M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
101
9.55M
    l |= (((unsigned long)(*((c)++))) << 16),                    \
102
9.55M
    l |= (((unsigned long)(*((c)++))) << 8),                     \
103
9.55M
    l |= (((unsigned long)(*((c)++)))))
104
17.5M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
105
17.5M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
106
17.5M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
107
17.5M
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
108
17.5M
    l)
109
110
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
111
112
52.1M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
113
52.1M
    l |= (((unsigned long)(*((c)++))) << 8),               \
114
52.1M
    l |= (((unsigned long)(*((c)++))) << 16),              \
115
52.1M
    l |= (((unsigned long)(*((c)++))) << 24))
116
24.4M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
117
24.4M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
118
24.4M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
119
24.4M
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
120
24.4M
    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
873M
{
130
873M
    const unsigned char *data = data_;
131
873M
    unsigned char *p;
132
873M
    HASH_LONG l;
133
873M
    size_t n;
134
135
873M
    if (len == 0)
136
0
        return 1;
137
138
873M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
873M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
873M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
873M
    c->Nl = l;
144
145
873M
    n = c->num;
146
873M
    if (n != 0) {
147
434M
        p = (unsigned char *)c->data;
148
149
434M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
217M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
217M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
217M
            n = HASH_CBLOCK - n;
153
217M
            data += n;
154
217M
            len -= n;
155
217M
            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
217M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
217M
        } else {
164
217M
            memcpy(p + n, data, len);
165
217M
            c->num += (unsigned int)len;
166
217M
            return 1;
167
217M
        }
168
434M
    }
169
170
656M
    n = len / HASH_CBLOCK;
171
656M
    if (n > 0) {
172
1.69M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.69M
        n *= HASH_CBLOCK;
174
1.69M
        data += n;
175
1.69M
        len -= n;
176
1.69M
    }
177
178
656M
    if (len != 0) {
179
439M
        p = (unsigned char *)c->data;
180
439M
        c->num = (unsigned int)len;
181
439M
        memcpy(p, data, len);
182
439M
    }
183
656M
    return 1;
184
873M
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
129
788k
{
130
788k
    const unsigned char *data = data_;
131
788k
    unsigned char *p;
132
788k
    HASH_LONG l;
133
788k
    size_t n;
134
135
788k
    if (len == 0)
136
0
        return 1;
137
138
788k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
788k
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
788k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
788k
    c->Nl = l;
144
145
788k
    n = c->num;
146
788k
    if (n != 0) {
147
203k
        p = (unsigned char *)c->data;
148
149
203k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
86.0k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
86.0k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
86.0k
            n = HASH_CBLOCK - n;
153
86.0k
            data += n;
154
86.0k
            len -= n;
155
86.0k
            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
86.0k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
117k
        } else {
164
117k
            memcpy(p + n, data, len);
165
117k
            c->num += (unsigned int)len;
166
117k
            return 1;
167
117k
        }
168
203k
    }
169
170
670k
    n = len / HASH_CBLOCK;
171
670k
    if (n > 0) {
172
78.9k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
78.9k
        n *= HASH_CBLOCK;
174
78.9k
        data += n;
175
78.9k
        len -= n;
176
78.9k
    }
177
178
670k
    if (len != 0) {
179
622k
        p = (unsigned char *)c->data;
180
622k
        c->num = (unsigned int)len;
181
622k
        memcpy(p, data, len);
182
622k
    }
183
670k
    return 1;
184
788k
}
RIPEMD160_Update
Line
Count
Source
129
1.90M
{
130
1.90M
    const unsigned char *data = data_;
131
1.90M
    unsigned char *p;
132
1.90M
    HASH_LONG l;
133
1.90M
    size_t n;
134
135
1.90M
    if (len == 0)
136
0
        return 1;
137
138
1.90M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
1.90M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
1.90M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
1.90M
    c->Nl = l;
144
145
1.90M
    n = c->num;
146
1.90M
    if (n != 0) {
147
551
        p = (unsigned char *)c->data;
148
149
551
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
197
            memcpy(p + n, data, HASH_CBLOCK - n);
151
197
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
197
            n = HASH_CBLOCK - n;
153
197
            data += n;
154
197
            len -= n;
155
197
            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
197
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
354
        } else {
164
354
            memcpy(p + n, data, len);
165
354
            c->num += (unsigned int)len;
166
354
            return 1;
167
354
        }
168
551
    }
169
170
1.90M
    n = len / HASH_CBLOCK;
171
1.90M
    if (n > 0) {
172
1.89k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.89k
        n *= HASH_CBLOCK;
174
1.89k
        data += n;
175
1.89k
        len -= n;
176
1.89k
    }
177
178
1.90M
    if (len != 0) {
179
1.90M
        p = (unsigned char *)c->data;
180
1.90M
        c->num = (unsigned int)len;
181
1.90M
        memcpy(p, data, len);
182
1.90M
    }
183
1.90M
    return 1;
184
1.90M
}
SHA1_Update
Line
Count
Source
129
1.59M
{
130
1.59M
    const unsigned char *data = data_;
131
1.59M
    unsigned char *p;
132
1.59M
    HASH_LONG l;
133
1.59M
    size_t n;
134
135
1.59M
    if (len == 0)
136
0
        return 1;
137
138
1.59M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
1.59M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
1.59M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
1.59M
    c->Nl = l;
144
145
1.59M
    n = c->num;
146
1.59M
    if (n != 0) {
147
168k
        p = (unsigned char *)c->data;
148
149
168k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
74.2k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
74.2k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
74.2k
            n = HASH_CBLOCK - n;
153
74.2k
            data += n;
154
74.2k
            len -= n;
155
74.2k
            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
74.2k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
94.2k
        } else {
164
94.2k
            memcpy(p + n, data, len);
165
94.2k
            c->num += (unsigned int)len;
166
94.2k
            return 1;
167
94.2k
        }
168
168k
    }
169
170
1.50M
    n = len / HASH_CBLOCK;
171
1.50M
    if (n > 0) {
172
476k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
476k
        n *= HASH_CBLOCK;
174
476k
        data += n;
175
476k
        len -= n;
176
476k
    }
177
178
1.50M
    if (len != 0) {
179
1.32M
        p = (unsigned char *)c->data;
180
1.32M
        c->num = (unsigned int)len;
181
1.32M
        memcpy(p, data, len);
182
1.32M
    }
183
1.50M
    return 1;
184
1.59M
}
SHA256_Update
Line
Count
Source
129
869M
{
130
869M
    const unsigned char *data = data_;
131
869M
    unsigned char *p;
132
869M
    HASH_LONG l;
133
869M
    size_t n;
134
135
869M
    if (len == 0)
136
0
        return 1;
137
138
869M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
869M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
869M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
869M
    c->Nl = l;
144
145
869M
    n = c->num;
146
869M
    if (n != 0) {
147
433M
        p = (unsigned char *)c->data;
148
149
433M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
216M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
216M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
216M
            n = HASH_CBLOCK - n;
153
216M
            data += n;
154
216M
            len -= n;
155
216M
            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
216M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
216M
        } else {
164
216M
            memcpy(p + n, data, len);
165
216M
            c->num += (unsigned int)len;
166
216M
            return 1;
167
216M
        }
168
433M
    }
169
170
652M
    n = len / HASH_CBLOCK;
171
652M
    if (n > 0) {
172
1.13M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.13M
        n *= HASH_CBLOCK;
174
1.13M
        data += n;
175
1.13M
        len -= n;
176
1.13M
    }
177
178
652M
    if (len != 0) {
179
435M
        p = (unsigned char *)c->data;
180
435M
        c->num = (unsigned int)len;
181
435M
        memcpy(p, data, len);
182
435M
    }
183
652M
    return 1;
184
869M
}
ossl_sm3_update
Line
Count
Source
129
7.63k
{
130
7.63k
    const unsigned char *data = data_;
131
7.63k
    unsigned char *p;
132
7.63k
    HASH_LONG l;
133
7.63k
    size_t n;
134
135
7.63k
    if (len == 0)
136
0
        return 1;
137
138
7.63k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
7.63k
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
7.63k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
7.63k
    c->Nl = l;
144
145
7.63k
    n = c->num;
146
7.63k
    if (n != 0) {
147
529
        p = (unsigned char *)c->data;
148
149
529
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
199
            memcpy(p + n, data, HASH_CBLOCK - n);
151
199
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
199
            n = HASH_CBLOCK - n;
153
199
            data += n;
154
199
            len -= n;
155
199
            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
199
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
330
        } else {
164
330
            memcpy(p + n, data, len);
165
330
            c->num += (unsigned int)len;
166
330
            return 1;
167
330
        }
168
529
    }
169
170
7.30k
    n = len / HASH_CBLOCK;
171
7.30k
    if (n > 0) {
172
3.49k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
3.49k
        n *= HASH_CBLOCK;
174
3.49k
        data += n;
175
3.49k
        len -= n;
176
3.49k
    }
177
178
7.30k
    if (len != 0) {
179
3.93k
        p = (unsigned char *)c->data;
180
3.93k
        c->num = (unsigned int)len;
181
3.93k
        memcpy(p, data, len);
182
3.93k
    }
183
7.30k
    return 1;
184
7.63k
}
185
186
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
187
1.66M
{
188
1.66M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
1.66M
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
SHA1_Transform
Line
Count
Source
187
1.33M
{
188
1.33M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
1.33M
}
SHA256_Transform
Line
Count
Source
187
326k
{
188
326k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
326k
}
Unexecuted instantiation: ossl_sm3_transform
190
191
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
192
6.10M
{
193
6.10M
    unsigned char *p = (unsigned char *)c->data;
194
6.10M
    size_t n = c->num;
195
196
6.10M
    p[n] = 0x80; /* there is always room for one */
197
6.10M
    n++;
198
199
6.10M
    if (n > (HASH_CBLOCK - 8)) {
200
104k
        memset(p + n, 0, HASH_CBLOCK - n);
201
104k
        n = 0;
202
104k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
104k
    }
204
6.10M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
6.10M
    p += HASH_CBLOCK - 8;
207
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
2.44M
    (void)HOST_l2c(c->Nh, p);
209
2.44M
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
3.65M
    (void)HOST_l2c(c->Nl, p);
212
3.65M
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
6.10M
    p -= HASH_CBLOCK;
215
6.10M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
6.10M
    c->num = 0;
217
6.10M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
6.10M
    HASH_MAKE_STRING(c, md);
223
156k
#endif
224
225
156k
    return 1;
226
6.10M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
192
1.13M
{
193
1.13M
    unsigned char *p = (unsigned char *)c->data;
194
1.13M
    size_t n = c->num;
195
196
1.13M
    p[n] = 0x80; /* there is always room for one */
197
1.13M
    n++;
198
199
1.13M
    if (n > (HASH_CBLOCK - 8)) {
200
19.1k
        memset(p + n, 0, HASH_CBLOCK - n);
201
19.1k
        n = 0;
202
19.1k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
19.1k
    }
204
1.13M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
1.13M
    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
1.13M
    (void)HOST_l2c(c->Nl, p);
212
1.13M
    (void)HOST_l2c(c->Nh, p);
213
1.13M
#endif
214
1.13M
    p -= HASH_CBLOCK;
215
1.13M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
1.13M
    c->num = 0;
217
1.13M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
1.13M
    HASH_MAKE_STRING(c, md);
223
1.13M
#endif
224
225
1.13M
    return 1;
226
1.13M
}
RIPEMD160_Final
Line
Count
Source
192
2.51M
{
193
2.51M
    unsigned char *p = (unsigned char *)c->data;
194
2.51M
    size_t n = c->num;
195
196
2.51M
    p[n] = 0x80; /* there is always room for one */
197
2.51M
    n++;
198
199
2.51M
    if (n > (HASH_CBLOCK - 8)) {
200
221
        memset(p + n, 0, HASH_CBLOCK - n);
201
221
        n = 0;
202
221
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
221
    }
204
2.51M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
2.51M
    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.51M
    (void)HOST_l2c(c->Nl, p);
212
2.51M
    (void)HOST_l2c(c->Nh, p);
213
2.51M
#endif
214
2.51M
    p -= HASH_CBLOCK;
215
2.51M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
2.51M
    c->num = 0;
217
2.51M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
2.51M
    HASH_MAKE_STRING(c, md);
223
2.51M
#endif
224
225
2.51M
    return 1;
226
2.51M
}
SHA1_Final
Line
Count
Source
192
2.28M
{
193
2.28M
    unsigned char *p = (unsigned char *)c->data;
194
2.28M
    size_t n = c->num;
195
196
2.28M
    p[n] = 0x80; /* there is always room for one */
197
2.28M
    n++;
198
199
2.28M
    if (n > (HASH_CBLOCK - 8)) {
200
84.1k
        memset(p + n, 0, HASH_CBLOCK - n);
201
84.1k
        n = 0;
202
84.1k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
84.1k
    }
204
2.28M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
2.28M
    p += HASH_CBLOCK - 8;
207
2.28M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
2.28M
    (void)HOST_l2c(c->Nh, p);
209
2.28M
    (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
2.28M
    p -= HASH_CBLOCK;
215
2.28M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
2.28M
    c->num = 0;
217
2.28M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
2.28M
    HASH_MAKE_STRING(c, md);
223
2.28M
#endif
224
225
2.28M
    return 1;
226
2.28M
}
SHA256_Final
Line
Count
Source
192
156k
{
193
156k
    unsigned char *p = (unsigned char *)c->data;
194
156k
    size_t n = c->num;
195
196
156k
    p[n] = 0x80; /* there is always room for one */
197
156k
    n++;
198
199
156k
    if (n > (HASH_CBLOCK - 8)) {
200
688
        memset(p + n, 0, HASH_CBLOCK - n);
201
688
        n = 0;
202
688
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
688
    }
204
156k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
156k
    p += HASH_CBLOCK - 8;
207
156k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
156k
    (void)HOST_l2c(c->Nh, p);
209
156k
    (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
156k
    p -= HASH_CBLOCK;
215
156k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
156k
    c->num = 0;
217
156k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
156k
    HASH_MAKE_STRING(c, md);
223
156k
#endif
224
225
156k
    return 1;
226
156k
}
ossl_sm3_final
Line
Count
Source
192
3.77k
{
193
3.77k
    unsigned char *p = (unsigned char *)c->data;
194
3.77k
    size_t n = c->num;
195
196
3.77k
    p[n] = 0x80; /* there is always room for one */
197
3.77k
    n++;
198
199
3.77k
    if (n > (HASH_CBLOCK - 8)) {
200
59
        memset(p + n, 0, HASH_CBLOCK - n);
201
59
        n = 0;
202
59
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
59
    }
204
3.77k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
3.77k
    p += HASH_CBLOCK - 8;
207
3.77k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
3.77k
    (void)HOST_l2c(c->Nh, p);
209
3.77k
    (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
3.77k
    p -= HASH_CBLOCK;
215
3.77k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
3.77k
    c->num = 0;
217
3.77k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
3.77k
    HASH_MAKE_STRING(c, md);
223
3.77k
#endif
224
225
3.77k
    return 1;
226
3.77k
}
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