Coverage Report

Created: 2025-08-28 07:07

/src/openssl33/include/crypto/md32_common.h
Line
Count
Source (jump to first uncovered line)
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
696M
# define ROTATE(a,n)     (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
101
102
#ifndef PEDANTIC
103
# if defined(__GNUC__) && __GNUC__>=2 && \
104
     !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
105
#  if defined(__riscv_zbb) || defined(__riscv_zbkb)
106
#   if __riscv_xlen == 64
107
#   undef ROTATE
108
#   define ROTATE(x, n) ({ MD32_REG_T ret;            \
109
                       asm ("roriw %0, %1, %2"        \
110
                       : "=r"(ret)                    \
111
                       : "r"(x), "i"(32 - (n))); ret;})
112
#   endif
113
#   if __riscv_xlen == 32
114
#   undef ROTATE
115
#   define ROTATE(x, n) ({ MD32_REG_T ret;            \
116
                       asm ("rori %0, %1, %2"         \
117
                       : "=r"(ret)                    \
118
                       : "r"(x), "i"(32 - (n))); ret;})
119
#   endif
120
#  endif
121
# endif
122
#endif
123
124
# if defined(DATA_ORDER_IS_BIG_ENDIAN)
125
126
351k
#  define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))<<24),          \
127
351k
                         l|=(((unsigned long)(*((c)++)))<<16),          \
128
351k
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
129
351k
                         l|=(((unsigned long)(*((c)++)))    )           )
130
5.19G
#  define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)>>24)&0xff),      \
131
5.19G
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
132
5.19G
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
133
5.19G
                         *((c)++)=(unsigned char)(((l)    )&0xff),      \
134
5.19G
                         l)
135
136
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
137
138
34.2M
#  define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))    ),          \
139
34.2M
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
140
34.2M
                         l|=(((unsigned long)(*((c)++)))<<16),          \
141
34.2M
                         l|=(((unsigned long)(*((c)++)))<<24)           )
142
18.2M
#  define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)    )&0xff),      \
143
18.2M
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
144
18.2M
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
145
18.2M
                         *((c)++)=(unsigned char)(((l)>>24)&0xff),      \
146
18.2M
                         l)
147
148
# endif
149
150
/*
151
 * Time for some action :-)
152
 */
153
154
int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len)
155
1.14G
{
156
1.14G
    const unsigned char *data = data_;
157
1.14G
    unsigned char *p;
158
1.14G
    HASH_LONG l;
159
1.14G
    size_t n;
160
161
1.14G
    if (len == 0)
162
0
        return 1;
163
164
1.14G
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
1.14G
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
1.14G
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
1.14G
    c->Nl = l;
170
171
1.14G
    n = c->num;
172
1.14G
    if (n != 0) {
173
569M
        p = (unsigned char *)c->data;
174
175
569M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
284M
            memcpy(p + n, data, HASH_CBLOCK - n);
177
284M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
284M
            n = HASH_CBLOCK - n;
179
284M
            data += n;
180
284M
            len -= n;
181
284M
            c->num = 0;
182
            /*
183
             * We use memset rather than OPENSSL_cleanse() here deliberately.
184
             * Using OPENSSL_cleanse() here could be a performance issue. It
185
             * will get properly cleansed on finalisation so this isn't a
186
             * security problem.
187
             */
188
284M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
284M
        } else {
190
284M
            memcpy(p + n, data, len);
191
284M
            c->num += (unsigned int)len;
192
284M
            return 1;
193
284M
        }
194
569M
    }
195
196
858M
    n = len / HASH_CBLOCK;
197
858M
    if (n > 0) {
198
1.68M
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
1.68M
        n *= HASH_CBLOCK;
200
1.68M
        data += n;
201
1.68M
        len -= n;
202
1.68M
    }
203
204
858M
    if (len != 0) {
205
573M
        p = (unsigned char *)c->data;
206
573M
        c->num = (unsigned int)len;
207
573M
        memcpy(p, data, len);
208
573M
    }
209
858M
    return 1;
210
1.14G
}
SHA1_Update
Line
Count
Source
155
1.26M
{
156
1.26M
    const unsigned char *data = data_;
157
1.26M
    unsigned char *p;
158
1.26M
    HASH_LONG l;
159
1.26M
    size_t n;
160
161
1.26M
    if (len == 0)
162
0
        return 1;
163
164
1.26M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
1.26M
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
1.26M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
1.26M
    c->Nl = l;
170
171
1.26M
    n = c->num;
172
1.26M
    if (n != 0) {
173
243k
        p = (unsigned char *)c->data;
174
175
243k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
102k
            memcpy(p + n, data, HASH_CBLOCK - n);
177
102k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
102k
            n = HASH_CBLOCK - n;
179
102k
            data += n;
180
102k
            len -= n;
181
102k
            c->num = 0;
182
            /*
183
             * We use memset rather than OPENSSL_cleanse() here deliberately.
184
             * Using OPENSSL_cleanse() here could be a performance issue. It
185
             * will get properly cleansed on finalisation so this isn't a
186
             * security problem.
187
             */
188
102k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
140k
        } else {
190
140k
            memcpy(p + n, data, len);
191
140k
            c->num += (unsigned int)len;
192
140k
            return 1;
193
140k
        }
194
243k
    }
195
196
1.12M
    n = len / HASH_CBLOCK;
197
1.12M
    if (n > 0) {
198
390k
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
390k
        n *= HASH_CBLOCK;
200
390k
        data += n;
201
390k
        len -= n;
202
390k
    }
203
204
1.12M
    if (len != 0) {
205
1.01M
        p = (unsigned char *)c->data;
206
1.01M
        c->num = (unsigned int)len;
207
1.01M
        memcpy(p, data, len);
208
1.01M
    }
209
1.12M
    return 1;
210
1.26M
}
SHA256_Update
Line
Count
Source
155
1.14G
{
156
1.14G
    const unsigned char *data = data_;
157
1.14G
    unsigned char *p;
158
1.14G
    HASH_LONG l;
159
1.14G
    size_t n;
160
161
1.14G
    if (len == 0)
162
0
        return 1;
163
164
1.14G
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
1.14G
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
1.14G
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
1.14G
    c->Nl = l;
170
171
1.14G
    n = c->num;
172
1.14G
    if (n != 0) {
173
569M
        p = (unsigned char *)c->data;
174
175
569M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
284M
            memcpy(p + n, data, HASH_CBLOCK - n);
177
284M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
284M
            n = HASH_CBLOCK - n;
179
284M
            data += n;
180
284M
            len -= n;
181
284M
            c->num = 0;
182
            /*
183
             * We use memset rather than OPENSSL_cleanse() here deliberately.
184
             * Using OPENSSL_cleanse() here could be a performance issue. It
185
             * will get properly cleansed on finalisation so this isn't a
186
             * security problem.
187
             */
188
284M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
284M
        } else {
190
284M
            memcpy(p + n, data, len);
191
284M
            c->num += (unsigned int)len;
192
284M
            return 1;
193
284M
        }
194
569M
    }
195
196
855M
    n = len / HASH_CBLOCK;
197
855M
    if (n > 0) {
198
1.23M
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
1.23M
        n *= HASH_CBLOCK;
200
1.23M
        data += n;
201
1.23M
        len -= n;
202
1.23M
    }
203
204
855M
    if (len != 0) {
205
570M
        p = (unsigned char *)c->data;
206
570M
        c->num = (unsigned int)len;
207
570M
        memcpy(p, data, len);
208
570M
    }
209
855M
    return 1;
210
1.14G
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
155
615k
{
156
615k
    const unsigned char *data = data_;
157
615k
    unsigned char *p;
158
615k
    HASH_LONG l;
159
615k
    size_t n;
160
161
615k
    if (len == 0)
162
0
        return 1;
163
164
615k
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
615k
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
615k
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
615k
    c->Nl = l;
170
171
615k
    n = c->num;
172
615k
    if (n != 0) {
173
205k
        p = (unsigned char *)c->data;
174
175
205k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
94.6k
            memcpy(p + n, data, HASH_CBLOCK - n);
177
94.6k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
94.6k
            n = HASH_CBLOCK - n;
179
94.6k
            data += n;
180
94.6k
            len -= n;
181
94.6k
            c->num = 0;
182
            /*
183
             * We use memset rather than OPENSSL_cleanse() here deliberately.
184
             * Using OPENSSL_cleanse() here could be a performance issue. It
185
             * will get properly cleansed on finalisation so this isn't a
186
             * security problem.
187
             */
188
94.6k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
110k
        } else {
190
110k
            memcpy(p + n, data, len);
191
110k
            c->num += (unsigned int)len;
192
110k
            return 1;
193
110k
        }
194
205k
    }
195
196
504k
    n = len / HASH_CBLOCK;
197
504k
    if (n > 0) {
198
60.3k
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
60.3k
        n *= HASH_CBLOCK;
200
60.3k
        data += n;
201
60.3k
        len -= n;
202
60.3k
    }
203
204
504k
    if (len != 0) {
205
464k
        p = (unsigned char *)c->data;
206
464k
        c->num = (unsigned int)len;
207
464k
        memcpy(p, data, len);
208
464k
    }
209
504k
    return 1;
210
615k
}
RIPEMD160_Update
Line
Count
Source
155
1.56M
{
156
1.56M
    const unsigned char *data = data_;
157
1.56M
    unsigned char *p;
158
1.56M
    HASH_LONG l;
159
1.56M
    size_t n;
160
161
1.56M
    if (len == 0)
162
0
        return 1;
163
164
1.56M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
1.56M
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
1.56M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
1.56M
    c->Nl = l;
170
171
1.56M
    n = c->num;
172
1.56M
    if (n != 0) {
173
396
        p = (unsigned char *)c->data;
174
175
396
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
136
            memcpy(p + n, data, HASH_CBLOCK - n);
177
136
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
136
            n = HASH_CBLOCK - n;
179
136
            data += n;
180
136
            len -= n;
181
136
            c->num = 0;
182
            /*
183
             * We use memset rather than OPENSSL_cleanse() here deliberately.
184
             * Using OPENSSL_cleanse() here could be a performance issue. It
185
             * will get properly cleansed on finalisation so this isn't a
186
             * security problem.
187
             */
188
136
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
260
        } else {
190
260
            memcpy(p + n, data, len);
191
260
            c->num += (unsigned int)len;
192
260
            return 1;
193
260
        }
194
396
    }
195
196
1.56M
    n = len / HASH_CBLOCK;
197
1.56M
    if (n > 0) {
198
1.60k
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
1.60k
        n *= HASH_CBLOCK;
200
1.60k
        data += n;
201
1.60k
        len -= n;
202
1.60k
    }
203
204
1.56M
    if (len != 0) {
205
1.55M
        p = (unsigned char *)c->data;
206
1.55M
        c->num = (unsigned int)len;
207
1.55M
        memcpy(p, data, len);
208
1.55M
    }
209
1.56M
    return 1;
210
1.56M
}
ossl_sm3_update
Line
Count
Source
155
3.86k
{
156
3.86k
    const unsigned char *data = data_;
157
3.86k
    unsigned char *p;
158
3.86k
    HASH_LONG l;
159
3.86k
    size_t n;
160
161
3.86k
    if (len == 0)
162
0
        return 1;
163
164
3.86k
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
3.86k
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
3.86k
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
3.86k
    c->Nl = l;
170
171
3.86k
    n = c->num;
172
3.86k
    if (n != 0) {
173
396
        p = (unsigned char *)c->data;
174
175
396
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
145
            memcpy(p + n, data, HASH_CBLOCK - n);
177
145
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
145
            n = HASH_CBLOCK - n;
179
145
            data += n;
180
145
            len -= n;
181
145
            c->num = 0;
182
            /*
183
             * We use memset rather than OPENSSL_cleanse() here deliberately.
184
             * Using OPENSSL_cleanse() here could be a performance issue. It
185
             * will get properly cleansed on finalisation so this isn't a
186
             * security problem.
187
             */
188
145
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
251
        } else {
190
251
            memcpy(p + n, data, len);
191
251
            c->num += (unsigned int)len;
192
251
            return 1;
193
251
        }
194
396
    }
195
196
3.60k
    n = len / HASH_CBLOCK;
197
3.60k
    if (n > 0) {
198
1.62k
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
1.62k
        n *= HASH_CBLOCK;
200
1.62k
        data += n;
201
1.62k
        len -= n;
202
1.62k
    }
203
204
3.60k
    if (len != 0) {
205
2.07k
        p = (unsigned char *)c->data;
206
2.07k
        c->num = (unsigned int)len;
207
2.07k
        memcpy(p, data, len);
208
2.07k
    }
209
3.60k
    return 1;
210
3.86k
}
211
212
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
213
1.15M
{
214
1.15M
    HASH_BLOCK_DATA_ORDER(c, data, 1);
215
1.15M
}
SHA1_Transform
Line
Count
Source
213
861k
{
214
861k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
215
861k
}
SHA256_Transform
Line
Count
Source
213
290k
{
214
290k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
215
290k
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
Unexecuted instantiation: ossl_sm3_transform
216
217
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
218
522M
{
219
522M
    unsigned char *p = (unsigned char *)c->data;
220
522M
    size_t n = c->num;
221
222
522M
    p[n] = 0x80;                /* there is always room for one */
223
522M
    n++;
224
225
522M
    if (n > (HASH_CBLOCK - 8)) {
226
87.6k
        memset(p + n, 0, HASH_CBLOCK - n);
227
87.6k
        n = 0;
228
87.6k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
87.6k
    }
230
522M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
522M
    p += HASH_CBLOCK - 8;
233
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
520M
    (void)HOST_l2c(c->Nh, p);
235
520M
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
2.68M
    (void)HOST_l2c(c->Nl, p);
238
2.68M
    (void)HOST_l2c(c->Nh, p);
239
# endif
240
522M
    p -= HASH_CBLOCK;
241
522M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
522M
    c->num = 0;
243
522M
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
522M
    HASH_MAKE_STRING(c, md);
249
518M
# endif
250
251
518M
    return 1;
252
522M
}
SHA1_Final
Line
Count
Source
218
1.31M
{
219
1.31M
    unsigned char *p = (unsigned char *)c->data;
220
1.31M
    size_t n = c->num;
221
222
1.31M
    p[n] = 0x80;                /* there is always room for one */
223
1.31M
    n++;
224
225
1.31M
    if (n > (HASH_CBLOCK - 8)) {
226
72.2k
        memset(p + n, 0, HASH_CBLOCK - n);
227
72.2k
        n = 0;
228
72.2k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
72.2k
    }
230
1.31M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
1.31M
    p += HASH_CBLOCK - 8;
233
1.31M
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
1.31M
    (void)HOST_l2c(c->Nh, p);
235
1.31M
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
    (void)HOST_l2c(c->Nl, p);
238
    (void)HOST_l2c(c->Nh, p);
239
# endif
240
1.31M
    p -= HASH_CBLOCK;
241
1.31M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
1.31M
    c->num = 0;
243
1.31M
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
1.31M
    HASH_MAKE_STRING(c, md);
249
1.31M
# endif
250
251
1.31M
    return 1;
252
1.31M
}
SHA256_Final
Line
Count
Source
218
518M
{
219
518M
    unsigned char *p = (unsigned char *)c->data;
220
518M
    size_t n = c->num;
221
222
518M
    p[n] = 0x80;                /* there is always room for one */
223
518M
    n++;
224
225
518M
    if (n > (HASH_CBLOCK - 8)) {
226
8.75k
        memset(p + n, 0, HASH_CBLOCK - n);
227
8.75k
        n = 0;
228
8.75k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
8.75k
    }
230
518M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
518M
    p += HASH_CBLOCK - 8;
233
518M
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
518M
    (void)HOST_l2c(c->Nh, p);
235
518M
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
    (void)HOST_l2c(c->Nl, p);
238
    (void)HOST_l2c(c->Nh, p);
239
# endif
240
518M
    p -= HASH_CBLOCK;
241
518M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
518M
    c->num = 0;
243
518M
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
518M
    HASH_MAKE_STRING(c, md);
249
518M
# endif
250
251
518M
    return 1;
252
518M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
218
573k
{
219
573k
    unsigned char *p = (unsigned char *)c->data;
220
573k
    size_t n = c->num;
221
222
573k
    p[n] = 0x80;                /* there is always room for one */
223
573k
    n++;
224
225
573k
    if (n > (HASH_CBLOCK - 8)) {
226
6.41k
        memset(p + n, 0, HASH_CBLOCK - n);
227
6.41k
        n = 0;
228
6.41k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
6.41k
    }
230
573k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
573k
    p += HASH_CBLOCK - 8;
233
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
    (void)HOST_l2c(c->Nh, p);
235
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
573k
    (void)HOST_l2c(c->Nl, p);
238
573k
    (void)HOST_l2c(c->Nh, p);
239
573k
# endif
240
573k
    p -= HASH_CBLOCK;
241
573k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
573k
    c->num = 0;
243
573k
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
573k
    HASH_MAKE_STRING(c, md);
249
573k
# endif
250
251
573k
    return 1;
252
573k
}
RIPEMD160_Final
Line
Count
Source
218
2.11M
{
219
2.11M
    unsigned char *p = (unsigned char *)c->data;
220
2.11M
    size_t n = c->num;
221
222
2.11M
    p[n] = 0x80;                /* there is always room for one */
223
2.11M
    n++;
224
225
2.11M
    if (n > (HASH_CBLOCK - 8)) {
226
139
        memset(p + n, 0, HASH_CBLOCK - n);
227
139
        n = 0;
228
139
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
139
    }
230
2.11M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
2.11M
    p += HASH_CBLOCK - 8;
233
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
    (void)HOST_l2c(c->Nh, p);
235
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
2.11M
    (void)HOST_l2c(c->Nl, p);
238
2.11M
    (void)HOST_l2c(c->Nh, p);
239
2.11M
# endif
240
2.11M
    p -= HASH_CBLOCK;
241
2.11M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
2.11M
    c->num = 0;
243
2.11M
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
2.11M
    HASH_MAKE_STRING(c, md);
249
2.11M
# endif
250
251
2.11M
    return 1;
252
2.11M
}
ossl_sm3_final
Line
Count
Source
218
1.95k
{
219
1.95k
    unsigned char *p = (unsigned char *)c->data;
220
1.95k
    size_t n = c->num;
221
222
1.95k
    p[n] = 0x80;                /* there is always room for one */
223
1.95k
    n++;
224
225
1.95k
    if (n > (HASH_CBLOCK - 8)) {
226
60
        memset(p + n, 0, HASH_CBLOCK - n);
227
60
        n = 0;
228
60
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
60
    }
230
1.95k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
1.95k
    p += HASH_CBLOCK - 8;
233
1.95k
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
1.95k
    (void)HOST_l2c(c->Nh, p);
235
1.95k
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
    (void)HOST_l2c(c->Nl, p);
238
    (void)HOST_l2c(c->Nh, p);
239
# endif
240
1.95k
    p -= HASH_CBLOCK;
241
1.95k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
1.95k
    c->num = 0;
243
1.95k
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
1.95k
    HASH_MAKE_STRING(c, md);
249
1.95k
# endif
250
251
1.95k
    return 1;
252
1.95k
}
253
254
# ifndef MD32_REG_T
255
#  if defined(__alpha) || defined(__sparcv9) || defined(__mips)
256
#   define MD32_REG_T long
257
/*
258
 * This comment was originally written for MD5, which is why it
259
 * discusses A-D. But it basically applies to all 32-bit digests,
260
 * which is why it was moved to common header file.
261
 *
262
 * In case you wonder why A-D are declared as long and not
263
 * as MD5_LONG. Doing so results in slight performance
264
 * boost on LP64 architectures. The catch is we don't
265
 * really care if 32 MSBs of a 64-bit register get polluted
266
 * with eventual overflows as we *save* only 32 LSBs in
267
 * *either* case. Now declaring 'em long excuses the compiler
268
 * from keeping 32 MSBs zeroed resulting in 13% performance
269
 * improvement under SPARC Solaris7/64 and 5% under AlphaLinux.
270
 * Well, to be honest it should say that this *prevents*
271
 * performance degradation.
272
 */
273
#  else
274
/*
275
 * Above is not absolute and there are LP64 compilers that
276
 * generate better code if MD32_REG_T is defined int. The above
277
 * pre-processor condition reflects the circumstances under which
278
 * the conclusion was made and is subject to further extension.
279
 */
280
#   define MD32_REG_T int
281
#  endif
282
# endif
283
284
#endif