Coverage Report

Created: 2025-06-22 06:56

/src/openssl/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
10.6G
# 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
298M
#  define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))<<24),          \
127
298M
                         l|=(((unsigned long)(*((c)++)))<<16),          \
128
298M
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
129
298M
                         l|=(((unsigned long)(*((c)++)))    )           )
130
145k
#  define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)>>24)&0xff),      \
131
145k
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
132
145k
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
133
145k
                         *((c)++)=(unsigned char)(((l)    )&0xff),      \
134
145k
                         l)
135
136
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
137
138
94.5M
#  define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))    ),          \
139
94.5M
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
140
94.5M
                         l|=(((unsigned long)(*((c)++)))<<16),          \
141
94.5M
                         l|=(((unsigned long)(*((c)++)))<<24)           )
142
1.68k
#  define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)    )&0xff),      \
143
1.68k
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
144
1.68k
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
145
1.68k
                         *((c)++)=(unsigned char)(((l)>>24)&0xff),      \
146
1.68k
                         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
180M
{
156
180M
    const unsigned char *data = data_;
157
180M
    unsigned char *p;
158
180M
    HASH_LONG l;
159
180M
    size_t n;
160
161
180M
    if (len == 0)
162
0
        return 1;
163
164
180M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
180M
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
180M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
180M
    c->Nl = l;
170
171
180M
    n = c->num;
172
180M
    if (n != 0) {
173
177M
        p = (unsigned char *)c->data;
174
175
177M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
2.81M
            memcpy(p + n, data, HASH_CBLOCK - n);
177
2.81M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
2.81M
            n = HASH_CBLOCK - n;
179
2.81M
            data += n;
180
2.81M
            len -= n;
181
2.81M
            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
2.81M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
174M
        } else {
190
174M
            memcpy(p + n, data, len);
191
174M
            c->num += (unsigned int)len;
192
174M
            return 1;
193
174M
        }
194
177M
    }
195
196
5.65M
    n = len / HASH_CBLOCK;
197
5.65M
    if (n > 0) {
198
26.7k
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
26.7k
        n *= HASH_CBLOCK;
200
26.7k
        data += n;
201
26.7k
        len -= n;
202
26.7k
    }
203
204
5.65M
    if (len != 0) {
205
2.81M
        p = (unsigned char *)c->data;
206
2.81M
        c->num = (unsigned int)len;
207
2.81M
        memcpy(p, data, len);
208
2.81M
    }
209
5.65M
    return 1;
210
180M
}
MD4_Update
Line
Count
Source
155
142
{
156
142
    const unsigned char *data = data_;
157
142
    unsigned char *p;
158
142
    HASH_LONG l;
159
142
    size_t n;
160
161
142
    if (len == 0)
162
0
        return 1;
163
164
142
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
142
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
142
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
142
    c->Nl = l;
170
171
142
    n = c->num;
172
142
    if (n != 0) {
173
0
        p = (unsigned char *)c->data;
174
175
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
0
            memcpy(p + n, data, HASH_CBLOCK - n);
177
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
0
            n = HASH_CBLOCK - n;
179
0
            data += n;
180
0
            len -= n;
181
0
            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
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
0
        } else {
190
0
            memcpy(p + n, data, len);
191
0
            c->num += (unsigned int)len;
192
0
            return 1;
193
0
        }
194
0
    }
195
196
142
    n = len / HASH_CBLOCK;
197
142
    if (n > 0) {
198
142
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
142
        n *= HASH_CBLOCK;
200
142
        data += n;
201
142
        len -= n;
202
142
    }
203
204
142
    if (len != 0) {
205
61
        p = (unsigned char *)c->data;
206
61
        c->num = (unsigned int)len;
207
61
        memcpy(p, data, len);
208
61
    }
209
142
    return 1;
210
142
}
MD5_Update
Line
Count
Source
155
272
{
156
272
    const unsigned char *data = data_;
157
272
    unsigned char *p;
158
272
    HASH_LONG l;
159
272
    size_t n;
160
161
272
    if (len == 0)
162
0
        return 1;
163
164
272
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
272
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
272
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
272
    c->Nl = l;
170
171
272
    n = c->num;
172
272
    if (n != 0) {
173
0
        p = (unsigned char *)c->data;
174
175
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
0
            memcpy(p + n, data, HASH_CBLOCK - n);
177
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
0
            n = HASH_CBLOCK - n;
179
0
            data += n;
180
0
            len -= n;
181
0
            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
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
0
        } else {
190
0
            memcpy(p + n, data, len);
191
0
            c->num += (unsigned int)len;
192
0
            return 1;
193
0
        }
194
0
    }
195
196
272
    n = len / HASH_CBLOCK;
197
272
    if (n > 0) {
198
272
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
272
        n *= HASH_CBLOCK;
200
272
        data += n;
201
272
        len -= n;
202
272
    }
203
204
272
    if (len != 0) {
205
84
        p = (unsigned char *)c->data;
206
84
        c->num = (unsigned int)len;
207
84
        memcpy(p, data, len);
208
84
    }
209
272
    return 1;
210
272
}
RIPEMD160_Update
Line
Count
Source
155
126
{
156
126
    const unsigned char *data = data_;
157
126
    unsigned char *p;
158
126
    HASH_LONG l;
159
126
    size_t n;
160
161
126
    if (len == 0)
162
0
        return 1;
163
164
126
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
126
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
126
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
126
    c->Nl = l;
170
171
126
    n = c->num;
172
126
    if (n != 0) {
173
0
        p = (unsigned char *)c->data;
174
175
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
0
            memcpy(p + n, data, HASH_CBLOCK - n);
177
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
0
            n = HASH_CBLOCK - n;
179
0
            data += n;
180
0
            len -= n;
181
0
            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
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
0
        } else {
190
0
            memcpy(p + n, data, len);
191
0
            c->num += (unsigned int)len;
192
0
            return 1;
193
0
        }
194
0
    }
195
196
126
    n = len / HASH_CBLOCK;
197
126
    if (n > 0) {
198
126
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
126
        n *= HASH_CBLOCK;
200
126
        data += n;
201
126
        len -= n;
202
126
    }
203
204
126
    if (len != 0) {
205
52
        p = (unsigned char *)c->data;
206
52
        c->num = (unsigned int)len;
207
52
        memcpy(p, data, len);
208
52
    }
209
126
    return 1;
210
126
}
SHA1_Update
Line
Count
Source
155
232
{
156
232
    const unsigned char *data = data_;
157
232
    unsigned char *p;
158
232
    HASH_LONG l;
159
232
    size_t n;
160
161
232
    if (len == 0)
162
0
        return 1;
163
164
232
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
232
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
232
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
232
    c->Nl = l;
170
171
232
    n = c->num;
172
232
    if (n != 0) {
173
0
        p = (unsigned char *)c->data;
174
175
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
0
            memcpy(p + n, data, HASH_CBLOCK - n);
177
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
0
            n = HASH_CBLOCK - n;
179
0
            data += n;
180
0
            len -= n;
181
0
            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
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
0
        } else {
190
0
            memcpy(p + n, data, len);
191
0
            c->num += (unsigned int)len;
192
0
            return 1;
193
0
        }
194
0
    }
195
196
232
    n = len / HASH_CBLOCK;
197
232
    if (n > 0) {
198
232
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
232
        n *= HASH_CBLOCK;
200
232
        data += n;
201
232
        len -= n;
202
232
    }
203
204
232
    if (len != 0) {
205
61
        p = (unsigned char *)c->data;
206
61
        c->num = (unsigned int)len;
207
61
        memcpy(p, data, len);
208
61
    }
209
232
    return 1;
210
232
}
SHA256_Update
Line
Count
Source
155
180M
{
156
180M
    const unsigned char *data = data_;
157
180M
    unsigned char *p;
158
180M
    HASH_LONG l;
159
180M
    size_t n;
160
161
180M
    if (len == 0)
162
0
        return 1;
163
164
180M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
180M
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
180M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
180M
    c->Nl = l;
170
171
180M
    n = c->num;
172
180M
    if (n != 0) {
173
177M
        p = (unsigned char *)c->data;
174
175
177M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
2.81M
            memcpy(p + n, data, HASH_CBLOCK - n);
177
2.81M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
2.81M
            n = HASH_CBLOCK - n;
179
2.81M
            data += n;
180
2.81M
            len -= n;
181
2.81M
            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
2.81M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
174M
        } else {
190
174M
            memcpy(p + n, data, len);
191
174M
            c->num += (unsigned int)len;
192
174M
            return 1;
193
174M
        }
194
177M
    }
195
196
5.65M
    n = len / HASH_CBLOCK;
197
5.65M
    if (n > 0) {
198
25.8k
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
25.8k
        n *= HASH_CBLOCK;
200
25.8k
        data += n;
201
25.8k
        len -= n;
202
25.8k
    }
203
204
5.65M
    if (len != 0) {
205
2.81M
        p = (unsigned char *)c->data;
206
2.81M
        c->num = (unsigned int)len;
207
2.81M
        memcpy(p, data, len);
208
2.81M
    }
209
5.65M
    return 1;
210
180M
}
ossl_sm3_update
Line
Count
Source
155
152
{
156
152
    const unsigned char *data = data_;
157
152
    unsigned char *p;
158
152
    HASH_LONG l;
159
152
    size_t n;
160
161
152
    if (len == 0)
162
0
        return 1;
163
164
152
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
165
152
    if (l < c->Nl)              /* overflow */
166
0
        c->Nh++;
167
152
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
168
                                       * 16-bit */
169
152
    c->Nl = l;
170
171
152
    n = c->num;
172
152
    if (n != 0) {
173
0
        p = (unsigned char *)c->data;
174
175
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
176
0
            memcpy(p + n, data, HASH_CBLOCK - n);
177
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
178
0
            n = HASH_CBLOCK - n;
179
0
            data += n;
180
0
            len -= n;
181
0
            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
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
189
0
        } else {
190
0
            memcpy(p + n, data, len);
191
0
            c->num += (unsigned int)len;
192
0
            return 1;
193
0
        }
194
0
    }
195
196
152
    n = len / HASH_CBLOCK;
197
152
    if (n > 0) {
198
152
        HASH_BLOCK_DATA_ORDER(c, data, n);
199
152
        n *= HASH_CBLOCK;
200
152
        data += n;
201
152
        len -= n;
202
152
    }
203
204
152
    if (len != 0) {
205
63
        p = (unsigned char *)c->data;
206
63
        c->num = (unsigned int)len;
207
63
        memcpy(p, data, len);
208
63
    }
209
152
    return 1;
210
152
}
211
212
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
213
0
{
214
0
    HASH_BLOCK_DATA_ORDER(c, data, 1);
215
0
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
Unexecuted instantiation: SHA1_Transform
Unexecuted instantiation: SHA256_Transform
Unexecuted instantiation: ossl_sm3_transform
216
217
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
218
14.8k
{
219
14.8k
    unsigned char *p = (unsigned char *)c->data;
220
14.8k
    size_t n = c->num;
221
222
14.8k
    p[n] = 0x80;                /* there is always room for one */
223
14.8k
    n++;
224
225
14.8k
    if (n > (HASH_CBLOCK - 8)) {
226
219
        memset(p + n, 0, HASH_CBLOCK - n);
227
219
        n = 0;
228
219
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
219
    }
230
14.8k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
14.8k
    p += HASH_CBLOCK - 8;
233
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
14.5k
    (void)HOST_l2c(c->Nh, p);
235
14.5k
    (void)HOST_l2c(c->Nl, p);
236
# elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
237
270
    (void)HOST_l2c(c->Nl, p);
238
270
    (void)HOST_l2c(c->Nh, p);
239
# endif
240
14.8k
    p -= HASH_CBLOCK;
241
14.8k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
14.8k
    c->num = 0;
243
14.8k
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
14.8k
    HASH_MAKE_STRING(c, md);
249
14.4k
# endif
250
251
14.4k
    return 1;
252
14.8k
}
MD4_Final
Line
Count
Source
218
71
{
219
71
    unsigned char *p = (unsigned char *)c->data;
220
71
    size_t n = c->num;
221
222
71
    p[n] = 0x80;                /* there is always room for one */
223
71
    n++;
224
225
71
    if (n > (HASH_CBLOCK - 8)) {
226
23
        memset(p + n, 0, HASH_CBLOCK - n);
227
23
        n = 0;
228
23
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
23
    }
230
71
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
71
    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
71
    (void)HOST_l2c(c->Nl, p);
238
71
    (void)HOST_l2c(c->Nh, p);
239
71
# endif
240
71
    p -= HASH_CBLOCK;
241
71
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
71
    c->num = 0;
243
71
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
71
    HASH_MAKE_STRING(c, md);
249
71
# endif
250
251
71
    return 1;
252
71
}
MD5_Final
Line
Count
Source
218
136
{
219
136
    unsigned char *p = (unsigned char *)c->data;
220
136
    size_t n = c->num;
221
222
136
    p[n] = 0x80;                /* there is always room for one */
223
136
    n++;
224
225
136
    if (n > (HASH_CBLOCK - 8)) {
226
48
        memset(p + n, 0, HASH_CBLOCK - n);
227
48
        n = 0;
228
48
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
48
    }
230
136
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
136
    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
136
    (void)HOST_l2c(c->Nl, p);
238
136
    (void)HOST_l2c(c->Nh, p);
239
136
# endif
240
136
    p -= HASH_CBLOCK;
241
136
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
136
    c->num = 0;
243
136
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
136
    HASH_MAKE_STRING(c, md);
249
136
# endif
250
251
136
    return 1;
252
136
}
RIPEMD160_Final
Line
Count
Source
218
63
{
219
63
    unsigned char *p = (unsigned char *)c->data;
220
63
    size_t n = c->num;
221
222
63
    p[n] = 0x80;                /* there is always room for one */
223
63
    n++;
224
225
63
    if (n > (HASH_CBLOCK - 8)) {
226
28
        memset(p + n, 0, HASH_CBLOCK - n);
227
28
        n = 0;
228
28
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
28
    }
230
63
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
63
    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
63
    (void)HOST_l2c(c->Nl, p);
238
63
    (void)HOST_l2c(c->Nh, p);
239
63
# endif
240
63
    p -= HASH_CBLOCK;
241
63
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
63
    c->num = 0;
243
63
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
63
    HASH_MAKE_STRING(c, md);
249
63
# endif
250
251
63
    return 1;
252
63
}
SHA1_Final
Line
Count
Source
218
116
{
219
116
    unsigned char *p = (unsigned char *)c->data;
220
116
    size_t n = c->num;
221
222
116
    p[n] = 0x80;                /* there is always room for one */
223
116
    n++;
224
225
116
    if (n > (HASH_CBLOCK - 8)) {
226
24
        memset(p + n, 0, HASH_CBLOCK - n);
227
24
        n = 0;
228
24
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
24
    }
230
116
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
116
    p += HASH_CBLOCK - 8;
233
116
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
116
    (void)HOST_l2c(c->Nh, p);
235
116
    (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
116
    p -= HASH_CBLOCK;
241
116
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
116
    c->num = 0;
243
116
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
116
    HASH_MAKE_STRING(c, md);
249
116
# endif
250
251
116
    return 1;
252
116
}
SHA256_Final
Line
Count
Source
218
14.4k
{
219
14.4k
    unsigned char *p = (unsigned char *)c->data;
220
14.4k
    size_t n = c->num;
221
222
14.4k
    p[n] = 0x80;                /* there is always room for one */
223
14.4k
    n++;
224
225
14.4k
    if (n > (HASH_CBLOCK - 8)) {
226
56
        memset(p + n, 0, HASH_CBLOCK - n);
227
56
        n = 0;
228
56
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
56
    }
230
14.4k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
14.4k
    p += HASH_CBLOCK - 8;
233
14.4k
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
14.4k
    (void)HOST_l2c(c->Nh, p);
235
14.4k
    (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
14.4k
    p -= HASH_CBLOCK;
241
14.4k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
14.4k
    c->num = 0;
243
14.4k
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
14.4k
    HASH_MAKE_STRING(c, md);
249
14.4k
# endif
250
251
14.4k
    return 1;
252
14.4k
}
ossl_sm3_final
Line
Count
Source
218
76
{
219
76
    unsigned char *p = (unsigned char *)c->data;
220
76
    size_t n = c->num;
221
222
76
    p[n] = 0x80;                /* there is always room for one */
223
76
    n++;
224
225
76
    if (n > (HASH_CBLOCK - 8)) {
226
40
        memset(p + n, 0, HASH_CBLOCK - n);
227
40
        n = 0;
228
40
        HASH_BLOCK_DATA_ORDER(c, p, 1);
229
40
    }
230
76
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
231
232
76
    p += HASH_CBLOCK - 8;
233
76
# if   defined(DATA_ORDER_IS_BIG_ENDIAN)
234
76
    (void)HOST_l2c(c->Nh, p);
235
76
    (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
76
    p -= HASH_CBLOCK;
241
76
    HASH_BLOCK_DATA_ORDER(c, p, 1);
242
76
    c->num = 0;
243
76
    OPENSSL_cleanse(p, HASH_CBLOCK);
244
245
# ifndef HASH_MAKE_STRING
246
#  error "HASH_MAKE_STRING must be defined!"
247
# else
248
76
    HASH_MAKE_STRING(c, md);
249
76
# endif
250
251
76
    return 1;
252
76
}
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