Coverage Report

Created: 2025-10-12 06:56

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