Coverage Report

Created: 2026-02-14 07:20

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