Coverage Report

Created: 2026-02-14 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/include/crypto/md32_common.h
Line
Count
Source
1
/*
2
 * Copyright 1999-2025 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
#ifndef OSSL_CRYPTO_MD32_COMMON_H
67
#define OSSL_CRYPTO_MD32_COMMON_H
68
#pragma once
69
70
#include <openssl/crypto.h>
71
/*
72
 * For ossl_(un)likely
73
 */
74
#include <internal/common.h>
75
76
#if !defined(DATA_ORDER_IS_BIG_ENDIAN) && !defined(DATA_ORDER_IS_LITTLE_ENDIAN)
77
#error "DATA_ORDER must be defined!"
78
#endif
79
80
#ifndef HASH_CBLOCK
81
#error "HASH_CBLOCK must be defined!"
82
#endif
83
#ifndef HASH_LONG
84
#error "HASH_LONG must be defined!"
85
#endif
86
#ifndef HASH_CTX
87
#error "HASH_CTX must be defined!"
88
#endif
89
90
#ifndef HASH_UPDATE
91
#error "HASH_UPDATE must be defined!"
92
#endif
93
#ifndef HASH_TRANSFORM
94
#error "HASH_TRANSFORM must be defined!"
95
#endif
96
#ifndef HASH_FINAL
97
#error "HASH_FINAL must be defined!"
98
#endif
99
100
#ifndef HASH_BLOCK_DATA_ORDER
101
#error "HASH_BLOCK_DATA_ORDER must be defined!"
102
#endif
103
104
1.51G
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
105
106
#ifndef PEDANTIC
107
#if defined(__GNUC__) && __GNUC__ >= 2 && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
108
#if defined(__riscv_zbb) || defined(__riscv_zbkb)
109
#if __riscv_xlen == 64
110
#undef ROTATE
111
#define ROTATE(x, n) ({ MD32_REG_T ret;            \
112
                       asm ("roriw %0, %1, %2"        \
113
                       : "=r"(ret)                    \
114
                       : "r"(x), "i"(32 - (n))); ret; })
115
#endif
116
#if __riscv_xlen == 32
117
#undef ROTATE
118
#define ROTATE(x, n) ({ MD32_REG_T ret;            \
119
                       asm ("rori %0, %1, %2"         \
120
                       : "=r"(ret)                    \
121
                       : "r"(x), "i"(32 - (n))); ret; })
122
#endif
123
#endif
124
#endif
125
#endif
126
127
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
128
129
8.72M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
130
8.72M
    l |= (((unsigned long)(*((c)++))) << 16),                    \
131
8.72M
    l |= (((unsigned long)(*((c)++))) << 8),                     \
132
8.72M
    l |= (((unsigned long)(*((c)++)))))
133
2.89G
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
134
2.89G
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
135
2.89G
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
136
2.89G
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
137
2.89G
    l)
138
139
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
140
141
60.8M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
142
60.8M
    l |= (((unsigned long)(*((c)++))) << 8),               \
143
60.8M
    l |= (((unsigned long)(*((c)++))) << 16),              \
144
60.8M
    l |= (((unsigned long)(*((c)++))) << 24))
145
27.3M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
146
27.3M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
147
27.3M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
148
27.3M
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
149
27.3M
    l)
150
151
#endif
152
153
/*
154
 * Time for some action :-)
155
 */
156
157
int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len)
158
404M
{
159
404M
    const unsigned char *data = data_;
160
404M
    unsigned char *p;
161
404M
    HASH_LONG l;
162
404M
    size_t n;
163
164
404M
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
404M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
404M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
404M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
404M
    c->Nl = l;
173
174
404M
    n = c->num;
175
404M
    if (ossl_likely(n != 0)) {
176
201M
        p = (unsigned char *)c->data;
177
178
201M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
100M
            memcpy(p + n, data, HASH_CBLOCK - n);
180
100M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
100M
            n = HASH_CBLOCK - n;
182
100M
            data += n;
183
100M
            len -= n;
184
100M
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
100M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
100M
        } else {
193
100M
            memcpy(p + n, data, len);
194
100M
            c->num += (unsigned int)len;
195
100M
            return 1;
196
100M
        }
197
201M
    }
198
199
304M
    n = len / HASH_CBLOCK;
200
304M
    if (n > 0) {
201
663k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
663k
        n *= HASH_CBLOCK;
203
663k
        data += n;
204
663k
        len -= n;
205
663k
    }
206
207
304M
    if (len != 0) {
208
203M
        p = (unsigned char *)c->data;
209
203M
        c->num = (unsigned int)len;
210
203M
        memcpy(p, data, len);
211
203M
    }
212
304M
    return 1;
213
404M
}
SHA1_Update
Line
Count
Source
158
334k
{
159
334k
    const unsigned char *data = data_;
160
334k
    unsigned char *p;
161
334k
    HASH_LONG l;
162
334k
    size_t n;
163
164
334k
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
334k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
334k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
334k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
334k
    c->Nl = l;
173
174
334k
    n = c->num;
175
334k
    if (ossl_likely(n != 0)) {
176
30.2k
        p = (unsigned char *)c->data;
177
178
30.2k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
20.9k
            memcpy(p + n, data, HASH_CBLOCK - n);
180
20.9k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
20.9k
            n = HASH_CBLOCK - n;
182
20.9k
            data += n;
183
20.9k
            len -= n;
184
20.9k
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
20.9k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
20.9k
        } else {
193
9.28k
            memcpy(p + n, data, len);
194
9.28k
            c->num += (unsigned int)len;
195
9.28k
            return 1;
196
9.28k
        }
197
30.2k
    }
198
199
325k
    n = len / HASH_CBLOCK;
200
325k
    if (n > 0) {
201
116k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
116k
        n *= HASH_CBLOCK;
203
116k
        data += n;
204
116k
        len -= n;
205
116k
    }
206
207
325k
    if (len != 0) {
208
289k
        p = (unsigned char *)c->data;
209
289k
        c->num = (unsigned int)len;
210
289k
        memcpy(p, data, len);
211
289k
    }
212
325k
    return 1;
213
334k
}
SHA256_Update
Line
Count
Source
158
401M
{
159
401M
    const unsigned char *data = data_;
160
401M
    unsigned char *p;
161
401M
    HASH_LONG l;
162
401M
    size_t n;
163
164
401M
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
401M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
401M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
401M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
401M
    c->Nl = l;
173
174
401M
    n = c->num;
175
401M
    if (ossl_likely(n != 0)) {
176
200M
        p = (unsigned char *)c->data;
177
178
200M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
100M
            memcpy(p + n, data, HASH_CBLOCK - n);
180
100M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
100M
            n = HASH_CBLOCK - n;
182
100M
            data += n;
183
100M
            len -= n;
184
100M
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
100M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
100M
        } else {
193
100M
            memcpy(p + n, data, len);
194
100M
            c->num += (unsigned int)len;
195
100M
            return 1;
196
100M
        }
197
200M
    }
198
199
301M
    n = len / HASH_CBLOCK;
200
301M
    if (n > 0) {
201
367k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
367k
        n *= HASH_CBLOCK;
203
367k
        data += n;
204
367k
        len -= n;
205
367k
    }
206
207
301M
    if (len != 0) {
208
200M
        p = (unsigned char *)c->data;
209
200M
        c->num = (unsigned int)len;
210
200M
        memcpy(p, data, len);
211
200M
    }
212
301M
    return 1;
213
401M
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
158
823k
{
159
823k
    const unsigned char *data = data_;
160
823k
    unsigned char *p;
161
823k
    HASH_LONG l;
162
823k
    size_t n;
163
164
823k
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
823k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
823k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
823k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
823k
    c->Nl = l;
173
174
823k
    n = c->num;
175
823k
    if (ossl_likely(n != 0)) {
176
422k
        p = (unsigned char *)c->data;
177
178
422k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
175k
            memcpy(p + n, data, HASH_CBLOCK - n);
180
175k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
175k
            n = HASH_CBLOCK - n;
182
175k
            data += n;
183
175k
            len -= n;
184
175k
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
175k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
246k
        } else {
193
246k
            memcpy(p + n, data, len);
194
246k
            c->num += (unsigned int)len;
195
246k
            return 1;
196
246k
        }
197
422k
    }
198
199
576k
    n = len / HASH_CBLOCK;
200
576k
    if (n > 0) {
201
77.5k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
77.5k
        n *= HASH_CBLOCK;
203
77.5k
        data += n;
204
77.5k
        len -= n;
205
77.5k
    }
206
207
576k
    if (len != 0) {
208
509k
        p = (unsigned char *)c->data;
209
509k
        c->num = (unsigned int)len;
210
509k
        memcpy(p, data, len);
211
509k
    }
212
576k
    return 1;
213
823k
}
RIPEMD160_Update
Line
Count
Source
158
1.58M
{
159
1.58M
    const unsigned char *data = data_;
160
1.58M
    unsigned char *p;
161
1.58M
    HASH_LONG l;
162
1.58M
    size_t n;
163
164
1.58M
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
1.58M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
1.58M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
1.58M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
1.58M
    c->Nl = l;
173
174
1.58M
    n = c->num;
175
1.58M
    if (ossl_likely(n != 0)) {
176
237k
        p = (unsigned char *)c->data;
177
178
237k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
163k
            memcpy(p + n, data, HASH_CBLOCK - n);
180
163k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
163k
            n = HASH_CBLOCK - n;
182
163k
            data += n;
183
163k
            len -= n;
184
163k
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
163k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
163k
        } else {
193
73.6k
            memcpy(p + n, data, len);
194
73.6k
            c->num += (unsigned int)len;
195
73.6k
            return 1;
196
73.6k
        }
197
237k
    }
198
199
1.50M
    n = len / HASH_CBLOCK;
200
1.50M
    if (n > 0) {
201
58.4k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
58.4k
        n *= HASH_CBLOCK;
203
58.4k
        data += n;
204
58.4k
        len -= n;
205
58.4k
    }
206
207
1.50M
    if (len != 0) {
208
1.47M
        p = (unsigned char *)c->data;
209
1.47M
        c->num = (unsigned int)len;
210
1.47M
        memcpy(p, data, len);
211
1.47M
    }
212
1.50M
    return 1;
213
1.58M
}
ossl_sm3_update
Line
Count
Source
158
498k
{
159
498k
    const unsigned char *data = data_;
160
498k
    unsigned char *p;
161
498k
    HASH_LONG l;
162
498k
    size_t n;
163
164
498k
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
498k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
498k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
498k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
498k
    c->Nl = l;
173
174
498k
    n = c->num;
175
498k
    if (ossl_likely(n != 0)) {
176
445k
        p = (unsigned char *)c->data;
177
178
445k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
218k
            memcpy(p + n, data, HASH_CBLOCK - n);
180
218k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
218k
            n = HASH_CBLOCK - n;
182
218k
            data += n;
183
218k
            len -= n;
184
218k
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
218k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
226k
        } else {
193
226k
            memcpy(p + n, data, len);
194
226k
            c->num += (unsigned int)len;
195
226k
            return 1;
196
226k
        }
197
445k
    }
198
199
271k
    n = len / HASH_CBLOCK;
200
271k
    if (n > 0) {
201
43.2k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
43.2k
        n *= HASH_CBLOCK;
203
43.2k
        data += n;
204
43.2k
        len -= n;
205
43.2k
    }
206
207
271k
    if (len != 0) {
208
222k
        p = (unsigned char *)c->data;
209
222k
        c->num = (unsigned int)len;
210
222k
        memcpy(p, data, len);
211
222k
    }
212
271k
    return 1;
213
498k
}
214
215
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
216
1.37M
{
217
1.37M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
218
1.37M
}
SHA1_Transform
Line
Count
Source
216
1.16M
{
217
1.16M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
218
1.16M
}
SHA256_Transform
Line
Count
Source
216
210k
{
217
210k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
218
210k
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
Unexecuted instantiation: ossl_sm3_transform
219
220
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
221
294M
{
222
294M
    unsigned char *p = (unsigned char *)c->data;
223
294M
    size_t n = c->num;
224
225
294M
    p[n] = 0x80; /* there is always room for one */
226
294M
    n++;
227
228
294M
    if (n > (HASH_CBLOCK - 8)) {
229
105k
        memset(p + n, 0, HASH_CBLOCK - n);
230
105k
        n = 0;
231
105k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
105k
    }
233
294M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
294M
    p += HASH_CBLOCK - 8;
236
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
290M
    (void)HOST_l2c(c->Nh, p);
238
290M
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
4.02M
    (void)HOST_l2c(c->Nl, p);
241
4.02M
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
294M
    p -= HASH_CBLOCK;
244
294M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
294M
    c->num = 0;
246
294M
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
294M
    HASH_MAKE_STRING(c, md);
252
288M
#endif
253
254
288M
    return 1;
255
294M
}
SHA1_Final
Line
Count
Source
221
1.94M
{
222
1.94M
    unsigned char *p = (unsigned char *)c->data;
223
1.94M
    size_t n = c->num;
224
225
1.94M
    p[n] = 0x80; /* there is always room for one */
226
1.94M
    n++;
227
228
1.94M
    if (n > (HASH_CBLOCK - 8)) {
229
84.3k
        memset(p + n, 0, HASH_CBLOCK - n);
230
84.3k
        n = 0;
231
84.3k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
84.3k
    }
233
1.94M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
1.94M
    p += HASH_CBLOCK - 8;
236
1.94M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
1.94M
    (void)HOST_l2c(c->Nh, p);
238
1.94M
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
    (void)HOST_l2c(c->Nl, p);
241
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
1.94M
    p -= HASH_CBLOCK;
244
1.94M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
1.94M
    c->num = 0;
246
1.94M
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
1.94M
    HASH_MAKE_STRING(c, md);
252
1.94M
#endif
253
254
1.94M
    return 1;
255
1.94M
}
SHA256_Final
Line
Count
Source
221
288M
{
222
288M
    unsigned char *p = (unsigned char *)c->data;
223
288M
    size_t n = c->num;
224
225
288M
    p[n] = 0x80; /* there is always room for one */
226
288M
    n++;
227
228
288M
    if (n > (HASH_CBLOCK - 8)) {
229
7.04k
        memset(p + n, 0, HASH_CBLOCK - n);
230
7.04k
        n = 0;
231
7.04k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
7.04k
    }
233
288M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
288M
    p += HASH_CBLOCK - 8;
236
288M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
288M
    (void)HOST_l2c(c->Nh, p);
238
288M
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
    (void)HOST_l2c(c->Nl, p);
241
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
288M
    p -= HASH_CBLOCK;
244
288M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
288M
    c->num = 0;
246
288M
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
288M
    HASH_MAKE_STRING(c, md);
252
288M
#endif
253
254
288M
    return 1;
255
288M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
221
808k
{
222
808k
    unsigned char *p = (unsigned char *)c->data;
223
808k
    size_t n = c->num;
224
225
808k
    p[n] = 0x80; /* there is always room for one */
226
808k
    n++;
227
228
808k
    if (n > (HASH_CBLOCK - 8)) {
229
13.7k
        memset(p + n, 0, HASH_CBLOCK - n);
230
13.7k
        n = 0;
231
13.7k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
13.7k
    }
233
808k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
808k
    p += HASH_CBLOCK - 8;
236
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
    (void)HOST_l2c(c->Nh, p);
238
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
808k
    (void)HOST_l2c(c->Nl, p);
241
808k
    (void)HOST_l2c(c->Nh, p);
242
808k
#endif
243
808k
    p -= HASH_CBLOCK;
244
808k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
808k
    c->num = 0;
246
808k
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
808k
    HASH_MAKE_STRING(c, md);
252
808k
#endif
253
254
808k
    return 1;
255
808k
}
RIPEMD160_Final
Line
Count
Source
221
3.21M
{
222
3.21M
    unsigned char *p = (unsigned char *)c->data;
223
3.21M
    size_t n = c->num;
224
225
3.21M
    p[n] = 0x80; /* there is always room for one */
226
3.21M
    n++;
227
228
3.21M
    if (n > (HASH_CBLOCK - 8)) {
229
218
        memset(p + n, 0, HASH_CBLOCK - n);
230
218
        n = 0;
231
218
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
218
    }
233
3.21M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
3.21M
    p += HASH_CBLOCK - 8;
236
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
    (void)HOST_l2c(c->Nh, p);
238
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
3.21M
    (void)HOST_l2c(c->Nl, p);
241
3.21M
    (void)HOST_l2c(c->Nh, p);
242
3.21M
#endif
243
3.21M
    p -= HASH_CBLOCK;
244
3.21M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
3.21M
    c->num = 0;
246
3.21M
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
3.21M
    HASH_MAKE_STRING(c, md);
252
3.21M
#endif
253
254
3.21M
    return 1;
255
3.21M
}
ossl_sm3_final
Line
Count
Source
221
3.42k
{
222
3.42k
    unsigned char *p = (unsigned char *)c->data;
223
3.42k
    size_t n = c->num;
224
225
3.42k
    p[n] = 0x80; /* there is always room for one */
226
3.42k
    n++;
227
228
3.42k
    if (n > (HASH_CBLOCK - 8)) {
229
87
        memset(p + n, 0, HASH_CBLOCK - n);
230
87
        n = 0;
231
87
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
87
    }
233
3.42k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
3.42k
    p += HASH_CBLOCK - 8;
236
3.42k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
3.42k
    (void)HOST_l2c(c->Nh, p);
238
3.42k
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
    (void)HOST_l2c(c->Nl, p);
241
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
3.42k
    p -= HASH_CBLOCK;
244
3.42k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
3.42k
    c->num = 0;
246
3.42k
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
3.42k
    HASH_MAKE_STRING(c, md);
252
3.42k
#endif
253
254
3.42k
    return 1;
255
3.42k
}
256
257
#ifndef MD32_REG_T
258
#if defined(__alpha) || defined(__sparcv9) || defined(__mips)
259
#define MD32_REG_T long
260
/*
261
 * This comment was originally written for MD5, which is why it
262
 * discusses A-D. But it basically applies to all 32-bit digests,
263
 * which is why it was moved to common header file.
264
 *
265
 * In case you wonder why A-D are declared as long and not
266
 * as MD5_LONG. Doing so results in slight performance
267
 * boost on LP64 architectures. The catch is we don't
268
 * really care if 32 MSBs of a 64-bit register get polluted
269
 * with eventual overflows as we *save* only 32 LSBs in
270
 * *either* case. Now declaring 'em long excuses the compiler
271
 * from keeping 32 MSBs zeroed resulting in 13% performance
272
 * improvement under SPARC Solaris7/64 and 5% under AlphaLinux.
273
 * Well, to be honest it should say that this *prevents*
274
 * performance degradation.
275
 */
276
#else
277
/*
278
 * Above is not absolute and there are LP64 compilers that
279
 * generate better code if MD32_REG_T is defined int. The above
280
 * pre-processor condition reflects the circumstances under which
281
 * the conclusion was made and is subject to further extension.
282
 */
283
#define MD32_REG_T int
284
#endif
285
#endif
286
287
#endif