Coverage Report

Created: 2026-07-23 06:28

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.30G
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
97
98
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
99
100
10.7M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
101
10.7M
    l |= (((unsigned long)(*((c)++))) << 16),                    \
102
10.7M
    l |= (((unsigned long)(*((c)++))) << 8),                     \
103
10.7M
    l |= (((unsigned long)(*((c)++)))))
104
14.3M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
105
14.3M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
106
14.3M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
107
14.3M
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
108
14.3M
    l)
109
110
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
111
112
47.0M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
113
47.0M
    l |= (((unsigned long)(*((c)++))) << 8),               \
114
47.0M
    l |= (((unsigned long)(*((c)++))) << 16),              \
115
47.0M
    l |= (((unsigned long)(*((c)++))) << 24))
116
22.2M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
117
22.2M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
118
22.2M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
119
22.2M
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
120
22.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
902M
{
130
902M
    const unsigned char *data = data_;
131
902M
    unsigned char *p;
132
902M
    HASH_LONG l;
133
902M
    size_t n;
134
135
902M
    if (len == 0)
136
0
        return 1;
137
138
902M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
902M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
902M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
902M
    c->Nl = l;
144
145
902M
    n = c->num;
146
902M
    if (n != 0) {
147
448M
        p = (unsigned char *)c->data;
148
149
448M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
224M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
224M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
224M
            n = HASH_CBLOCK - n;
153
224M
            data += n;
154
224M
            len -= n;
155
224M
            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
224M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
224M
        } else {
164
224M
            memcpy(p + n, data, len);
165
224M
            c->num += (unsigned int)len;
166
224M
            return 1;
167
224M
        }
168
448M
    }
169
170
678M
    n = len / HASH_CBLOCK;
171
678M
    if (n > 0) {
172
1.65M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.65M
        n *= HASH_CBLOCK;
174
1.65M
        data += n;
175
1.65M
        len -= n;
176
1.65M
    }
177
178
678M
    if (len != 0) {
179
453M
        p = (unsigned char *)c->data;
180
453M
        c->num = (unsigned int)len;
181
453M
        memcpy(p, data, len);
182
453M
    }
183
678M
    return 1;
184
902M
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
129
706k
{
130
706k
    const unsigned char *data = data_;
131
706k
    unsigned char *p;
132
706k
    HASH_LONG l;
133
706k
    size_t n;
134
135
706k
    if (len == 0)
136
0
        return 1;
137
138
706k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
706k
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
706k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
706k
    c->Nl = l;
144
145
706k
    n = c->num;
146
706k
    if (n != 0) {
147
178k
        p = (unsigned char *)c->data;
148
149
178k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
83.6k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
83.6k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
83.6k
            n = HASH_CBLOCK - n;
153
83.6k
            data += n;
154
83.6k
            len -= n;
155
83.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
83.6k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
94.7k
        } else {
164
94.7k
            memcpy(p + n, data, len);
165
94.7k
            c->num += (unsigned int)len;
166
94.7k
            return 1;
167
94.7k
        }
168
178k
    }
169
170
611k
    n = len / HASH_CBLOCK;
171
611k
    if (n > 0) {
172
77.3k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
77.3k
        n *= HASH_CBLOCK;
174
77.3k
        data += n;
175
77.3k
        len -= n;
176
77.3k
    }
177
178
611k
    if (len != 0) {
179
564k
        p = (unsigned char *)c->data;
180
564k
        c->num = (unsigned int)len;
181
564k
        memcpy(p, data, len);
182
564k
    }
183
611k
    return 1;
184
706k
}
RIPEMD160_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
456
        p = (unsigned char *)c->data;
148
149
456
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
167
            memcpy(p + n, data, HASH_CBLOCK - n);
151
167
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
167
            n = HASH_CBLOCK - n;
153
167
            data += n;
154
167
            len -= n;
155
167
            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
167
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
289
        } else {
164
289
            memcpy(p + n, data, len);
165
289
            c->num += (unsigned int)len;
166
289
            return 1;
167
289
        }
168
456
    }
169
170
1.59M
    n = len / HASH_CBLOCK;
171
1.59M
    if (n > 0) {
172
1.80k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.80k
        n *= HASH_CBLOCK;
174
1.80k
        data += n;
175
1.80k
        len -= n;
176
1.80k
    }
177
178
1.59M
    if (len != 0) {
179
1.58M
        p = (unsigned char *)c->data;
180
1.58M
        c->num = (unsigned int)len;
181
1.58M
        memcpy(p, data, len);
182
1.58M
    }
183
1.59M
    return 1;
184
1.59M
}
SHA1_Update
Line
Count
Source
129
1.45M
{
130
1.45M
    const unsigned char *data = data_;
131
1.45M
    unsigned char *p;
132
1.45M
    HASH_LONG l;
133
1.45M
    size_t n;
134
135
1.45M
    if (len == 0)
136
0
        return 1;
137
138
1.45M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
1.45M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
1.45M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
1.45M
    c->Nl = l;
144
145
1.45M
    n = c->num;
146
1.45M
    if (n != 0) {
147
164k
        p = (unsigned char *)c->data;
148
149
164k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
73.3k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
73.3k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
73.3k
            n = HASH_CBLOCK - n;
153
73.3k
            data += n;
154
73.3k
            len -= n;
155
73.3k
            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
73.3k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
90.6k
        } else {
164
90.6k
            memcpy(p + n, data, len);
165
90.6k
            c->num += (unsigned int)len;
166
90.6k
            return 1;
167
90.6k
        }
168
164k
    }
169
170
1.36M
    n = len / HASH_CBLOCK;
171
1.36M
    if (n > 0) {
172
445k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
445k
        n *= HASH_CBLOCK;
174
445k
        data += n;
175
445k
        len -= n;
176
445k
    }
177
178
1.36M
    if (len != 0) {
179
1.18M
        p = (unsigned char *)c->data;
180
1.18M
        c->num = (unsigned int)len;
181
1.18M
        memcpy(p, data, len);
182
1.18M
    }
183
1.36M
    return 1;
184
1.45M
}
SHA256_Update
Line
Count
Source
129
898M
{
130
898M
    const unsigned char *data = data_;
131
898M
    unsigned char *p;
132
898M
    HASH_LONG l;
133
898M
    size_t n;
134
135
898M
    if (len == 0)
136
0
        return 1;
137
138
898M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
898M
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
898M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
898M
    c->Nl = l;
144
145
898M
    n = c->num;
146
898M
    if (n != 0) {
147
448M
        p = (unsigned char *)c->data;
148
149
448M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
224M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
224M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
224M
            n = HASH_CBLOCK - n;
153
224M
            data += n;
154
224M
            len -= n;
155
224M
            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
224M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
224M
        } else {
164
224M
            memcpy(p + n, data, len);
165
224M
            c->num += (unsigned int)len;
166
224M
            return 1;
167
224M
        }
168
448M
    }
169
170
674M
    n = len / HASH_CBLOCK;
171
674M
    if (n > 0) {
172
1.12M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.12M
        n *= HASH_CBLOCK;
174
1.12M
        data += n;
175
1.12M
        len -= n;
176
1.12M
    }
177
178
674M
    if (len != 0) {
179
449M
        p = (unsigned char *)c->data;
180
449M
        c->num = (unsigned int)len;
181
449M
        memcpy(p, data, len);
182
449M
    }
183
674M
    return 1;
184
898M
}
ossl_sm3_update
Line
Count
Source
129
8.03k
{
130
8.03k
    const unsigned char *data = data_;
131
8.03k
    unsigned char *p;
132
8.03k
    HASH_LONG l;
133
8.03k
    size_t n;
134
135
8.03k
    if (len == 0)
136
0
        return 1;
137
138
8.03k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
139
8.03k
    if (l < c->Nl) /* overflow */
140
0
        c->Nh++;
141
8.03k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
142
                                      * 16-bit */
143
8.03k
    c->Nl = l;
144
145
8.03k
    n = c->num;
146
8.03k
    if (n != 0) {
147
501
        p = (unsigned char *)c->data;
148
149
501
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
184
            memcpy(p + n, data, HASH_CBLOCK - n);
151
184
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
184
            n = HASH_CBLOCK - n;
153
184
            data += n;
154
184
            len -= n;
155
184
            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
184
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
317
        } else {
164
317
            memcpy(p + n, data, len);
165
317
            c->num += (unsigned int)len;
166
317
            return 1;
167
317
        }
168
501
    }
169
170
7.72k
    n = len / HASH_CBLOCK;
171
7.72k
    if (n > 0) {
172
3.69k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
3.69k
        n *= HASH_CBLOCK;
174
3.69k
        data += n;
175
3.69k
        len -= n;
176
3.69k
    }
177
178
7.72k
    if (len != 0) {
179
4.14k
        p = (unsigned char *)c->data;
180
4.14k
        c->num = (unsigned int)len;
181
4.14k
        memcpy(p, data, len);
182
4.14k
    }
183
7.72k
    return 1;
184
8.03k
}
185
186
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
187
1.62M
{
188
1.62M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
1.62M
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
SHA1_Transform
Line
Count
Source
187
1.38M
{
188
1.38M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
1.38M
}
SHA256_Transform
Line
Count
Source
187
242k
{
188
242k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
242k
}
Unexecuted instantiation: ossl_sm3_transform
190
191
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
192
5.32M
{
193
5.32M
    unsigned char *p = (unsigned char *)c->data;
194
5.32M
    size_t n = c->num;
195
196
5.32M
    p[n] = 0x80; /* there is always room for one */
197
5.32M
    n++;
198
199
5.32M
    if (n > (HASH_CBLOCK - 8)) {
200
94.8k
        memset(p + n, 0, HASH_CBLOCK - n);
201
94.8k
        n = 0;
202
94.8k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
94.8k
    }
204
5.32M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
5.32M
    p += HASH_CBLOCK - 8;
207
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
1.98M
    (void)HOST_l2c(c->Nh, p);
209
1.98M
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
3.33M
    (void)HOST_l2c(c->Nl, p);
212
3.33M
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
5.32M
    p -= HASH_CBLOCK;
215
5.32M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
5.32M
    c->num = 0;
217
5.32M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
5.32M
    HASH_MAKE_STRING(c, md);
223
154k
#endif
224
225
154k
    return 1;
226
5.32M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
192
1.16M
{
193
1.16M
    unsigned char *p = (unsigned char *)c->data;
194
1.16M
    size_t n = c->num;
195
196
1.16M
    p[n] = 0x80; /* there is always room for one */
197
1.16M
    n++;
198
199
1.16M
    if (n > (HASH_CBLOCK - 8)) {
200
12.8k
        memset(p + n, 0, HASH_CBLOCK - n);
201
12.8k
        n = 0;
202
12.8k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
12.8k
    }
204
1.16M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
1.16M
    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.16M
    (void)HOST_l2c(c->Nl, p);
212
1.16M
    (void)HOST_l2c(c->Nh, p);
213
1.16M
#endif
214
1.16M
    p -= HASH_CBLOCK;
215
1.16M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
1.16M
    c->num = 0;
217
1.16M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
1.16M
    HASH_MAKE_STRING(c, md);
223
1.16M
#endif
224
225
1.16M
    return 1;
226
1.16M
}
RIPEMD160_Final
Line
Count
Source
192
2.17M
{
193
2.17M
    unsigned char *p = (unsigned char *)c->data;
194
2.17M
    size_t n = c->num;
195
196
2.17M
    p[n] = 0x80; /* there is always room for one */
197
2.17M
    n++;
198
199
2.17M
    if (n > (HASH_CBLOCK - 8)) {
200
210
        memset(p + n, 0, HASH_CBLOCK - n);
201
210
        n = 0;
202
210
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
210
    }
204
2.17M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
2.17M
    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.17M
    (void)HOST_l2c(c->Nl, p);
212
2.17M
    (void)HOST_l2c(c->Nh, p);
213
2.17M
#endif
214
2.17M
    p -= HASH_CBLOCK;
215
2.17M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
2.17M
    c->num = 0;
217
2.17M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
2.17M
    HASH_MAKE_STRING(c, md);
223
2.17M
#endif
224
225
2.17M
    return 1;
226
2.17M
}
SHA1_Final
Line
Count
Source
192
1.83M
{
193
1.83M
    unsigned char *p = (unsigned char *)c->data;
194
1.83M
    size_t n = c->num;
195
196
1.83M
    p[n] = 0x80; /* there is always room for one */
197
1.83M
    n++;
198
199
1.83M
    if (n > (HASH_CBLOCK - 8)) {
200
81.0k
        memset(p + n, 0, HASH_CBLOCK - n);
201
81.0k
        n = 0;
202
81.0k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
81.0k
    }
204
1.83M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
1.83M
    p += HASH_CBLOCK - 8;
207
1.83M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
1.83M
    (void)HOST_l2c(c->Nh, p);
209
1.83M
    (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.83M
    p -= HASH_CBLOCK;
215
1.83M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
1.83M
    c->num = 0;
217
1.83M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
1.83M
    HASH_MAKE_STRING(c, md);
223
1.83M
#endif
224
225
1.83M
    return 1;
226
1.83M
}
SHA256_Final
Line
Count
Source
192
154k
{
193
154k
    unsigned char *p = (unsigned char *)c->data;
194
154k
    size_t n = c->num;
195
196
154k
    p[n] = 0x80; /* there is always room for one */
197
154k
    n++;
198
199
154k
    if (n > (HASH_CBLOCK - 8)) {
200
670
        memset(p + n, 0, HASH_CBLOCK - n);
201
670
        n = 0;
202
670
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
670
    }
204
154k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
154k
    p += HASH_CBLOCK - 8;
207
154k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
154k
    (void)HOST_l2c(c->Nh, p);
209
154k
    (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
154k
    p -= HASH_CBLOCK;
215
154k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
154k
    c->num = 0;
217
154k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
154k
    HASH_MAKE_STRING(c, md);
223
154k
#endif
224
225
154k
    return 1;
226
154k
}
ossl_sm3_final
Line
Count
Source
192
3.98k
{
193
3.98k
    unsigned char *p = (unsigned char *)c->data;
194
3.98k
    size_t n = c->num;
195
196
3.98k
    p[n] = 0x80; /* there is always room for one */
197
3.98k
    n++;
198
199
3.98k
    if (n > (HASH_CBLOCK - 8)) {
200
53
        memset(p + n, 0, HASH_CBLOCK - n);
201
53
        n = 0;
202
53
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
53
    }
204
3.98k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
3.98k
    p += HASH_CBLOCK - 8;
207
3.98k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
208
3.98k
    (void)HOST_l2c(c->Nh, p);
209
3.98k
    (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.98k
    p -= HASH_CBLOCK;
215
3.98k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
3.98k
    c->num = 0;
217
3.98k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
#error "HASH_MAKE_STRING must be defined!"
221
#else
222
3.98k
    HASH_MAKE_STRING(c, md);
223
3.98k
#endif
224
225
3.98k
    return 1;
226
3.98k
}
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