Coverage Report

Created: 2024-07-27 06:39

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