Coverage Report

Created: 2026-07-23 06:28

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.30G
#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
10.7M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
126
10.7M
    l |= (((unsigned long)(*((c)++))) << 16),                    \
127
10.7M
    l |= (((unsigned long)(*((c)++))) << 8),                     \
128
10.7M
    l |= (((unsigned long)(*((c)++)))))
129
4.19G
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
130
4.19G
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
131
4.19G
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
132
4.19G
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
133
4.19G
    l)
134
135
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
136
137
47.0M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
138
47.0M
    l |= (((unsigned long)(*((c)++))) << 8),               \
139
47.0M
    l |= (((unsigned long)(*((c)++))) << 16),              \
140
47.0M
    l |= (((unsigned long)(*((c)++))) << 24))
141
22.2M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
142
22.2M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
143
22.2M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
144
22.2M
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
145
22.2M
    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
902M
{
155
902M
    const unsigned char *data = data_;
156
902M
    unsigned char *p;
157
902M
    HASH_LONG l;
158
902M
    size_t n;
159
160
902M
    if (len == 0)
161
0
        return 1;
162
163
902M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
164
902M
    if (l < c->Nl) /* overflow */
165
0
        c->Nh++;
166
902M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
167
                                      * 16-bit */
168
902M
    c->Nl = l;
169
170
902M
    n = c->num;
171
902M
    if (n != 0) {
172
448M
        p = (unsigned char *)c->data;
173
174
448M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
175
224M
            memcpy(p + n, data, HASH_CBLOCK - n);
176
224M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
177
224M
            n = HASH_CBLOCK - n;
178
224M
            data += n;
179
224M
            len -= n;
180
224M
            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
224M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
188
224M
        } else {
189
224M
            memcpy(p + n, data, len);
190
224M
            c->num += (unsigned int)len;
191
224M
            return 1;
192
224M
        }
193
448M
    }
194
195
678M
    n = len / HASH_CBLOCK;
196
678M
    if (n > 0) {
197
1.65M
        HASH_BLOCK_DATA_ORDER(c, data, n);
198
1.65M
        n *= HASH_CBLOCK;
199
1.65M
        data += n;
200
1.65M
        len -= n;
201
1.65M
    }
202
203
678M
    if (len != 0) {
204
453M
        p = (unsigned char *)c->data;
205
453M
        c->num = (unsigned int)len;
206
453M
        memcpy(p, data, len);
207
453M
    }
208
678M
    return 1;
209
902M
}
SHA1_Update
Line
Count
Source
154
1.45M
{
155
1.45M
    const unsigned char *data = data_;
156
1.45M
    unsigned char *p;
157
1.45M
    HASH_LONG l;
158
1.45M
    size_t n;
159
160
1.45M
    if (len == 0)
161
0
        return 1;
162
163
1.45M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
164
1.45M
    if (l < c->Nl) /* overflow */
165
0
        c->Nh++;
166
1.45M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
167
                                      * 16-bit */
168
1.45M
    c->Nl = l;
169
170
1.45M
    n = c->num;
171
1.45M
    if (n != 0) {
172
164k
        p = (unsigned char *)c->data;
173
174
164k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
175
73.3k
            memcpy(p + n, data, HASH_CBLOCK - n);
176
73.3k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
177
73.3k
            n = HASH_CBLOCK - n;
178
73.3k
            data += n;
179
73.3k
            len -= n;
180
73.3k
            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
73.3k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
188
90.6k
        } else {
189
90.6k
            memcpy(p + n, data, len);
190
90.6k
            c->num += (unsigned int)len;
191
90.6k
            return 1;
192
90.6k
        }
193
164k
    }
194
195
1.36M
    n = len / HASH_CBLOCK;
196
1.36M
    if (n > 0) {
197
445k
        HASH_BLOCK_DATA_ORDER(c, data, n);
198
445k
        n *= HASH_CBLOCK;
199
445k
        data += n;
200
445k
        len -= n;
201
445k
    }
202
203
1.36M
    if (len != 0) {
204
1.18M
        p = (unsigned char *)c->data;
205
1.18M
        c->num = (unsigned int)len;
206
1.18M
        memcpy(p, data, len);
207
1.18M
    }
208
1.36M
    return 1;
209
1.45M
}
SHA256_Update
Line
Count
Source
154
898M
{
155
898M
    const unsigned char *data = data_;
156
898M
    unsigned char *p;
157
898M
    HASH_LONG l;
158
898M
    size_t n;
159
160
898M
    if (len == 0)
161
0
        return 1;
162
163
898M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
164
898M
    if (l < c->Nl) /* overflow */
165
0
        c->Nh++;
166
898M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
167
                                      * 16-bit */
168
898M
    c->Nl = l;
169
170
898M
    n = c->num;
171
898M
    if (n != 0) {
172
448M
        p = (unsigned char *)c->data;
173
174
448M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
175
224M
            memcpy(p + n, data, HASH_CBLOCK - n);
176
224M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
177
224M
            n = HASH_CBLOCK - n;
178
224M
            data += n;
179
224M
            len -= n;
180
224M
            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
224M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
188
224M
        } else {
189
224M
            memcpy(p + n, data, len);
190
224M
            c->num += (unsigned int)len;
191
224M
            return 1;
192
224M
        }
193
448M
    }
194
195
674M
    n = len / HASH_CBLOCK;
196
674M
    if (n > 0) {
197
1.12M
        HASH_BLOCK_DATA_ORDER(c, data, n);
198
1.12M
        n *= HASH_CBLOCK;
199
1.12M
        data += n;
200
1.12M
        len -= n;
201
1.12M
    }
202
203
674M
    if (len != 0) {
204
449M
        p = (unsigned char *)c->data;
205
449M
        c->num = (unsigned int)len;
206
449M
        memcpy(p, data, len);
207
449M
    }
208
674M
    return 1;
209
898M
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
154
706k
{
155
706k
    const unsigned char *data = data_;
156
706k
    unsigned char *p;
157
706k
    HASH_LONG l;
158
706k
    size_t n;
159
160
706k
    if (len == 0)
161
0
        return 1;
162
163
706k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
164
706k
    if (l < c->Nl) /* overflow */
165
0
        c->Nh++;
166
706k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
167
                                      * 16-bit */
168
706k
    c->Nl = l;
169
170
706k
    n = c->num;
171
706k
    if (n != 0) {
172
178k
        p = (unsigned char *)c->data;
173
174
178k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
175
83.6k
            memcpy(p + n, data, HASH_CBLOCK - n);
176
83.6k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
177
83.6k
            n = HASH_CBLOCK - n;
178
83.6k
            data += n;
179
83.6k
            len -= n;
180
83.6k
            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
83.6k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
188
94.7k
        } else {
189
94.7k
            memcpy(p + n, data, len);
190
94.7k
            c->num += (unsigned int)len;
191
94.7k
            return 1;
192
94.7k
        }
193
178k
    }
194
195
611k
    n = len / HASH_CBLOCK;
196
611k
    if (n > 0) {
197
77.3k
        HASH_BLOCK_DATA_ORDER(c, data, n);
198
77.3k
        n *= HASH_CBLOCK;
199
77.3k
        data += n;
200
77.3k
        len -= n;
201
77.3k
    }
202
203
611k
    if (len != 0) {
204
564k
        p = (unsigned char *)c->data;
205
564k
        c->num = (unsigned int)len;
206
564k
        memcpy(p, data, len);
207
564k
    }
208
611k
    return 1;
209
706k
}
RIPEMD160_Update
Line
Count
Source
154
1.59M
{
155
1.59M
    const unsigned char *data = data_;
156
1.59M
    unsigned char *p;
157
1.59M
    HASH_LONG l;
158
1.59M
    size_t n;
159
160
1.59M
    if (len == 0)
161
0
        return 1;
162
163
1.59M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
164
1.59M
    if (l < c->Nl) /* overflow */
165
0
        c->Nh++;
166
1.59M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
167
                                      * 16-bit */
168
1.59M
    c->Nl = l;
169
170
1.59M
    n = c->num;
171
1.59M
    if (n != 0) {
172
456
        p = (unsigned char *)c->data;
173
174
456
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
175
167
            memcpy(p + n, data, HASH_CBLOCK - n);
176
167
            HASH_BLOCK_DATA_ORDER(c, p, 1);
177
167
            n = HASH_CBLOCK - n;
178
167
            data += n;
179
167
            len -= n;
180
167
            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
167
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
188
289
        } else {
189
289
            memcpy(p + n, data, len);
190
289
            c->num += (unsigned int)len;
191
289
            return 1;
192
289
        }
193
456
    }
194
195
1.59M
    n = len / HASH_CBLOCK;
196
1.59M
    if (n > 0) {
197
1.80k
        HASH_BLOCK_DATA_ORDER(c, data, n);
198
1.80k
        n *= HASH_CBLOCK;
199
1.80k
        data += n;
200
1.80k
        len -= n;
201
1.80k
    }
202
203
1.59M
    if (len != 0) {
204
1.58M
        p = (unsigned char *)c->data;
205
1.58M
        c->num = (unsigned int)len;
206
1.58M
        memcpy(p, data, len);
207
1.58M
    }
208
1.59M
    return 1;
209
1.59M
}
ossl_sm3_update
Line
Count
Source
154
8.03k
{
155
8.03k
    const unsigned char *data = data_;
156
8.03k
    unsigned char *p;
157
8.03k
    HASH_LONG l;
158
8.03k
    size_t n;
159
160
8.03k
    if (len == 0)
161
0
        return 1;
162
163
8.03k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
164
8.03k
    if (l < c->Nl) /* overflow */
165
0
        c->Nh++;
166
8.03k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
167
                                      * 16-bit */
168
8.03k
    c->Nl = l;
169
170
8.03k
    n = c->num;
171
8.03k
    if (n != 0) {
172
501
        p = (unsigned char *)c->data;
173
174
501
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
175
184
            memcpy(p + n, data, HASH_CBLOCK - n);
176
184
            HASH_BLOCK_DATA_ORDER(c, p, 1);
177
184
            n = HASH_CBLOCK - n;
178
184
            data += n;
179
184
            len -= n;
180
184
            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
184
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
188
317
        } else {
189
317
            memcpy(p + n, data, len);
190
317
            c->num += (unsigned int)len;
191
317
            return 1;
192
317
        }
193
501
    }
194
195
7.72k
    n = len / HASH_CBLOCK;
196
7.72k
    if (n > 0) {
197
3.69k
        HASH_BLOCK_DATA_ORDER(c, data, n);
198
3.69k
        n *= HASH_CBLOCK;
199
3.69k
        data += n;
200
3.69k
        len -= n;
201
3.69k
    }
202
203
7.72k
    if (len != 0) {
204
4.14k
        p = (unsigned char *)c->data;
205
4.14k
        c->num = (unsigned int)len;
206
4.14k
        memcpy(p, data, len);
207
4.14k
    }
208
7.72k
    return 1;
209
8.03k
}
210
211
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
212
1.62M
{
213
1.62M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
214
1.62M
}
SHA1_Transform
Line
Count
Source
212
1.38M
{
213
1.38M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
214
1.38M
}
SHA256_Transform
Line
Count
Source
212
242k
{
213
242k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
214
242k
}
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
427M
{
218
427M
    unsigned char *p = (unsigned char *)c->data;
219
427M
    size_t n = c->num;
220
221
427M
    p[n] = 0x80; /* there is always room for one */
222
427M
    n++;
223
224
427M
    if (n > (HASH_CBLOCK - 8)) {
225
103k
        memset(p + n, 0, HASH_CBLOCK - n);
226
103k
        n = 0;
227
103k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
228
103k
    }
229
427M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
230
231
427M
    p += HASH_CBLOCK - 8;
232
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
233
423M
    (void)HOST_l2c(c->Nh, p);
234
423M
    (void)HOST_l2c(c->Nl, p);
235
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
236
3.33M
    (void)HOST_l2c(c->Nl, p);
237
3.33M
    (void)HOST_l2c(c->Nh, p);
238
#endif
239
427M
    p -= HASH_CBLOCK;
240
427M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
241
427M
    c->num = 0;
242
427M
    OPENSSL_cleanse(p, HASH_CBLOCK);
243
244
#ifndef HASH_MAKE_STRING
245
#error "HASH_MAKE_STRING must be defined!"
246
#else
247
427M
    HASH_MAKE_STRING(c, md);
248
422M
#endif
249
250
422M
    return 1;
251
427M
}
SHA1_Final
Line
Count
Source
217
1.83M
{
218
1.83M
    unsigned char *p = (unsigned char *)c->data;
219
1.83M
    size_t n = c->num;
220
221
1.83M
    p[n] = 0x80; /* there is always room for one */
222
1.83M
    n++;
223
224
1.83M
    if (n > (HASH_CBLOCK - 8)) {
225
81.0k
        memset(p + n, 0, HASH_CBLOCK - n);
226
81.0k
        n = 0;
227
81.0k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
228
81.0k
    }
229
1.83M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
230
231
1.83M
    p += HASH_CBLOCK - 8;
232
1.83M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
233
1.83M
    (void)HOST_l2c(c->Nh, p);
234
1.83M
    (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.83M
    p -= HASH_CBLOCK;
240
1.83M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
241
1.83M
    c->num = 0;
242
1.83M
    OPENSSL_cleanse(p, HASH_CBLOCK);
243
244
#ifndef HASH_MAKE_STRING
245
#error "HASH_MAKE_STRING must be defined!"
246
#else
247
1.83M
    HASH_MAKE_STRING(c, md);
248
1.83M
#endif
249
250
1.83M
    return 1;
251
1.83M
}
SHA256_Final
Line
Count
Source
217
422M
{
218
422M
    unsigned char *p = (unsigned char *)c->data;
219
422M
    size_t n = c->num;
220
221
422M
    p[n] = 0x80; /* there is always room for one */
222
422M
    n++;
223
224
422M
    if (n > (HASH_CBLOCK - 8)) {
225
9.36k
        memset(p + n, 0, HASH_CBLOCK - n);
226
9.36k
        n = 0;
227
9.36k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
228
9.36k
    }
229
422M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
230
231
422M
    p += HASH_CBLOCK - 8;
232
422M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
233
422M
    (void)HOST_l2c(c->Nh, p);
234
422M
    (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
422M
    p -= HASH_CBLOCK;
240
422M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
241
422M
    c->num = 0;
242
422M
    OPENSSL_cleanse(p, HASH_CBLOCK);
243
244
#ifndef HASH_MAKE_STRING
245
#error "HASH_MAKE_STRING must be defined!"
246
#else
247
422M
    HASH_MAKE_STRING(c, md);
248
422M
#endif
249
250
422M
    return 1;
251
422M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
217
1.16M
{
218
1.16M
    unsigned char *p = (unsigned char *)c->data;
219
1.16M
    size_t n = c->num;
220
221
1.16M
    p[n] = 0x80; /* there is always room for one */
222
1.16M
    n++;
223
224
1.16M
    if (n > (HASH_CBLOCK - 8)) {
225
12.8k
        memset(p + n, 0, HASH_CBLOCK - n);
226
12.8k
        n = 0;
227
12.8k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
228
12.8k
    }
229
1.16M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
230
231
1.16M
    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
1.16M
    (void)HOST_l2c(c->Nl, p);
237
1.16M
    (void)HOST_l2c(c->Nh, p);
238
1.16M
#endif
239
1.16M
    p -= HASH_CBLOCK;
240
1.16M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
241
1.16M
    c->num = 0;
242
1.16M
    OPENSSL_cleanse(p, HASH_CBLOCK);
243
244
#ifndef HASH_MAKE_STRING
245
#error "HASH_MAKE_STRING must be defined!"
246
#else
247
1.16M
    HASH_MAKE_STRING(c, md);
248
1.16M
#endif
249
250
1.16M
    return 1;
251
1.16M
}
RIPEMD160_Final
Line
Count
Source
217
2.17M
{
218
2.17M
    unsigned char *p = (unsigned char *)c->data;
219
2.17M
    size_t n = c->num;
220
221
2.17M
    p[n] = 0x80; /* there is always room for one */
222
2.17M
    n++;
223
224
2.17M
    if (n > (HASH_CBLOCK - 8)) {
225
210
        memset(p + n, 0, HASH_CBLOCK - n);
226
210
        n = 0;
227
210
        HASH_BLOCK_DATA_ORDER(c, p, 1);
228
210
    }
229
2.17M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
230
231
2.17M
    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
2.17M
    (void)HOST_l2c(c->Nl, p);
237
2.17M
    (void)HOST_l2c(c->Nh, p);
238
2.17M
#endif
239
2.17M
    p -= HASH_CBLOCK;
240
2.17M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
241
2.17M
    c->num = 0;
242
2.17M
    OPENSSL_cleanse(p, HASH_CBLOCK);
243
244
#ifndef HASH_MAKE_STRING
245
#error "HASH_MAKE_STRING must be defined!"
246
#else
247
2.17M
    HASH_MAKE_STRING(c, md);
248
2.17M
#endif
249
250
2.17M
    return 1;
251
2.17M
}
ossl_sm3_final
Line
Count
Source
217
3.98k
{
218
3.98k
    unsigned char *p = (unsigned char *)c->data;
219
3.98k
    size_t n = c->num;
220
221
3.98k
    p[n] = 0x80; /* there is always room for one */
222
3.98k
    n++;
223
224
3.98k
    if (n > (HASH_CBLOCK - 8)) {
225
53
        memset(p + n, 0, HASH_CBLOCK - n);
226
53
        n = 0;
227
53
        HASH_BLOCK_DATA_ORDER(c, p, 1);
228
53
    }
229
3.98k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
230
231
3.98k
    p += HASH_CBLOCK - 8;
232
3.98k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
233
3.98k
    (void)HOST_l2c(c->Nh, p);
234
3.98k
    (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
3.98k
    p -= HASH_CBLOCK;
240
3.98k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
241
3.98k
    c->num = 0;
242
3.98k
    OPENSSL_cleanse(p, HASH_CBLOCK);
243
244
#ifndef HASH_MAKE_STRING
245
#error "HASH_MAKE_STRING must be defined!"
246
#else
247
3.98k
    HASH_MAKE_STRING(c, md);
248
3.98k
#endif
249
250
3.98k
    return 1;
251
3.98k
}
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