Coverage Report

Created: 2026-09-13 06:13

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/include/crypto/md32_common.inc
Line
Count
Source
1
/*
2
 * Copyright 1999-2026 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
6.44G
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
105
106
#ifndef PEDANTIC
107
#if defined(__GNUC__) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
108
#if defined(__riscv_zbb) || defined(__riscv_zbkb)
109
#if __riscv_xlen == 64
110
#undef ROTATE
111
#define ROTATE(x, n) ({ MD32_REG_T ret;            \
112
                       asm ("roriw %0, %1, %2"        \
113
                       : "=r"(ret)                    \
114
                       : "r"(x), "i"(32 - (n))); ret; })
115
#endif
116
#if __riscv_xlen == 32
117
#undef ROTATE
118
#define ROTATE(x, n) ({ MD32_REG_T ret;            \
119
                       asm ("rori %0, %1, %2"         \
120
                       : "=r"(ret)                    \
121
                       : "r"(x), "i"(32 - (n))); ret; })
122
#endif
123
#  elif defined(__e2k__)
124
#   undef ROTATE
125
#   define ROTATE(a,n)  ( (__builtin_constant_p(n) && (n) > 16) \
126
                          ? __builtin_e2k_scrs((a), 32 - (n))   \
127
                          : __builtin_e2k_scls((a),      (n))   )
128
#endif
129
#endif
130
#endif
131
132
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
133
134
190M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
135
190M
    l |= (((unsigned long)(*((c)++))) << 16),                    \
136
190M
    l |= (((unsigned long)(*((c)++))) << 8),                     \
137
190M
    l |= (((unsigned long)(*((c)++)))))
138
46.3k
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
139
46.3k
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
140
46.3k
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
141
46.3k
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
142
46.3k
    l)
143
144
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
145
146
82.6M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
147
82.6M
    l |= (((unsigned long)(*((c)++))) << 8),               \
148
82.6M
    l |= (((unsigned long)(*((c)++))) << 16),              \
149
82.6M
    l |= (((unsigned long)(*((c)++))) << 24))
150
1.44k
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
151
1.44k
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
152
1.44k
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
153
1.44k
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
154
1.44k
    l)
155
156
#endif
157
158
/*
159
 * Time for some action :-)
160
 */
161
162
#ifdef HASH_UPDATE_THUNK
163
int HASH_UPDATE(void *cp, const unsigned char *data_, size_t len);
164
int HASH_UPDATE(void *cp, const unsigned char *data_, size_t len)
165
#else
166
int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len)
167
#endif
168
9.82k
{
169
#ifdef HASH_UPDATE_THUNK
170
9.21k
    HASH_CTX *c = (HASH_CTX *)cp;
171
#endif
172
9.82k
    const unsigned char *data = data_;
173
9.82k
    unsigned char *p;
174
9.82k
    HASH_LONG l;
175
9.82k
    size_t n;
176
177
9.82k
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
9.82k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
9.82k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
9.82k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
9.82k
    c->Nl = l;
186
187
9.82k
    n = c->num;
188
9.82k
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
9.82k
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
9.82k
    if (n > 0) {
220
        /* Process chunks */
221
9.82k
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
9.82k
        n *= HASH_CBLOCK;
223
9.82k
        data += n;
224
9.82k
        len -= n;
225
9.82k
    }
226
    /* Buffer any left over data */
227
9.82k
    if (len != 0) {
228
398
        p = (unsigned char *)c->data;
229
398
        c->num = (unsigned int)len;
230
398
        memcpy(p, data, len);
231
398
    }
232
9.82k
    return 1;
233
9.82k
}
MD4_Update
Line
Count
Source
168
140
{
169
#ifdef HASH_UPDATE_THUNK
170
    HASH_CTX *c = (HASH_CTX *)cp;
171
#endif
172
140
    const unsigned char *data = data_;
173
140
    unsigned char *p;
174
140
    HASH_LONG l;
175
140
    size_t n;
176
177
140
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
140
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
140
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
140
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
140
    c->Nl = l;
186
187
140
    n = c->num;
188
140
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
140
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
140
    if (n > 0) {
220
        /* Process chunks */
221
140
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
140
        n *= HASH_CBLOCK;
223
140
        data += n;
224
140
        len -= n;
225
140
    }
226
    /* Buffer any left over data */
227
140
    if (len != 0) {
228
52
        p = (unsigned char *)c->data;
229
52
        c->num = (unsigned int)len;
230
52
        memcpy(p, data, len);
231
52
    }
232
140
    return 1;
233
140
}
MD5_Update
Line
Count
Source
168
166
{
169
#ifdef HASH_UPDATE_THUNK
170
    HASH_CTX *c = (HASH_CTX *)cp;
171
#endif
172
166
    const unsigned char *data = data_;
173
166
    unsigned char *p;
174
166
    HASH_LONG l;
175
166
    size_t n;
176
177
166
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
166
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
166
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
166
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
166
    c->Nl = l;
186
187
166
    n = c->num;
188
166
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
166
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
166
    if (n > 0) {
220
        /* Process chunks */
221
166
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
166
        n *= HASH_CBLOCK;
223
166
        data += n;
224
166
        len -= n;
225
166
    }
226
    /* Buffer any left over data */
227
166
    if (len != 0) {
228
52
        p = (unsigned char *)c->data;
229
52
        c->num = (unsigned int)len;
230
52
        memcpy(p, data, len);
231
52
    }
232
166
    return 1;
233
166
}
RIPEMD160_Update
Line
Count
Source
168
150
{
169
#ifdef HASH_UPDATE_THUNK
170
    HASH_CTX *c = (HASH_CTX *)cp;
171
#endif
172
150
    const unsigned char *data = data_;
173
150
    unsigned char *p;
174
150
    HASH_LONG l;
175
150
    size_t n;
176
177
150
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
150
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
150
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
150
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
150
    c->Nl = l;
186
187
150
    n = c->num;
188
150
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
150
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
150
    if (n > 0) {
220
        /* Process chunks */
221
150
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
150
        n *= HASH_CBLOCK;
223
150
        data += n;
224
150
        len -= n;
225
150
    }
226
    /* Buffer any left over data */
227
150
    if (len != 0) {
228
56
        p = (unsigned char *)c->data;
229
56
        c->num = (unsigned int)len;
230
56
        memcpy(p, data, len);
231
56
    }
232
150
    return 1;
233
150
}
SHA1_Update_thunk
Line
Count
Source
168
224
{
169
224
#ifdef HASH_UPDATE_THUNK
170
224
    HASH_CTX *c = (HASH_CTX *)cp;
171
224
#endif
172
224
    const unsigned char *data = data_;
173
224
    unsigned char *p;
174
224
    HASH_LONG l;
175
224
    size_t n;
176
177
224
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
224
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
224
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
224
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
224
    c->Nl = l;
186
187
224
    n = c->num;
188
224
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
224
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
224
    if (n > 0) {
220
        /* Process chunks */
221
224
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
224
        n *= HASH_CBLOCK;
223
224
        data += n;
224
224
        len -= n;
225
224
    }
226
    /* Buffer any left over data */
227
224
    if (len != 0) {
228
68
        p = (unsigned char *)c->data;
229
68
        c->num = (unsigned int)len;
230
68
        memcpy(p, data, len);
231
68
    }
232
224
    return 1;
233
224
}
SHA256_Update_thunk
Line
Count
Source
168
8.99k
{
169
8.99k
#ifdef HASH_UPDATE_THUNK
170
8.99k
    HASH_CTX *c = (HASH_CTX *)cp;
171
8.99k
#endif
172
8.99k
    const unsigned char *data = data_;
173
8.99k
    unsigned char *p;
174
8.99k
    HASH_LONG l;
175
8.99k
    size_t n;
176
177
8.99k
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
8.99k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
8.99k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
8.99k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
8.99k
    c->Nl = l;
186
187
8.99k
    n = c->num;
188
8.99k
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
8.99k
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
8.99k
    if (n > 0) {
220
        /* Process chunks */
221
8.99k
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
8.99k
        n *= HASH_CBLOCK;
223
8.99k
        data += n;
224
8.99k
        len -= n;
225
8.99k
    }
226
    /* Buffer any left over data */
227
8.99k
    if (len != 0) {
228
106
        p = (unsigned char *)c->data;
229
106
        c->num = (unsigned int)len;
230
106
        memcpy(p, data, len);
231
106
    }
232
8.99k
    return 1;
233
8.99k
}
ossl_sm3_update
Line
Count
Source
168
158
{
169
#ifdef HASH_UPDATE_THUNK
170
    HASH_CTX *c = (HASH_CTX *)cp;
171
#endif
172
158
    const unsigned char *data = data_;
173
158
    unsigned char *p;
174
158
    HASH_LONG l;
175
158
    size_t n;
176
177
158
    if (ossl_unlikely(len == 0))
178
0
        return 1;
179
180
158
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
181
158
    if (ossl_unlikely(l < c->Nl)) /* overflow */
182
0
        c->Nh++;
183
158
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
184
                                      * 16-bit */
185
158
    c->Nl = l;
186
187
158
    n = c->num;
188
158
    if (ossl_likely(n != 0)) {
189
        /* Gets here if we already have buffered input data */
190
0
        p = (unsigned char *)c->data;
191
192
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
193
            /*
194
             * If there is enough input to fill the buffer then fill the
195
             * buffer and process a single chunk.
196
             */
197
0
            memcpy(p + n, data, HASH_CBLOCK - n);
198
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
199
0
            n = HASH_CBLOCK - n;
200
0
            data += n;
201
0
            len -= n;
202
0
            c->num = 0;
203
            /*
204
             * We use memset rather than OPENSSL_cleanse() here deliberately.
205
             * Using OPENSSL_cleanse() here could be a performance issue. It
206
             * will get properly cleansed on finalisation so this isn't a
207
             * security problem.
208
             */
209
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
210
0
        } else {
211
            /* Otherwise just keep filling the buffer */
212
0
            memcpy(p + n, data, len);
213
0
            c->num += (unsigned int)len;
214
0
            return 1;
215
0
        }
216
0
    }
217
218
158
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
219
158
    if (n > 0) {
220
        /* Process chunks */
221
158
        HASH_BLOCK_DATA_ORDER(c, data, n);
222
158
        n *= HASH_CBLOCK;
223
158
        data += n;
224
158
        len -= n;
225
158
    }
226
    /* Buffer any left over data */
227
158
    if (len != 0) {
228
64
        p = (unsigned char *)c->data;
229
64
        c->num = (unsigned int)len;
230
64
        memcpy(p, data, len);
231
64
    }
232
158
    return 1;
233
158
}
234
235
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
236
0
{
237
0
    HASH_BLOCK_DATA_ORDER(c, data, 1); /* Process a single chunk */
238
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
239
240
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
241
4.92k
{
242
4.92k
    unsigned char *p = (unsigned char *)c->data;
243
4.92k
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
4.92k
    p[n] = 0x80; /* there is always room for one */
250
4.92k
    n++;
251
252
4.92k
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
169
        memset(p + n, 0, HASH_CBLOCK - n);
258
169
        n = 0;
259
169
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
169
    }
261
    /* Add zero padding - but leave enough room for L */
262
4.92k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
4.92k
    p += HASH_CBLOCK - 8;
266
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
4.69k
    (void)HOST_l2c(c->Nh, p);
268
4.69k
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
228
    (void)HOST_l2c(c->Nl, p);
271
228
    (void)HOST_l2c(c->Nh, p);
272
#endif
273
4.92k
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
4.92k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
4.92k
    c->num = 0;
277
4.92k
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
4.92k
    HASH_MAKE_STRING(c, md);
283
4.50k
#endif
284
285
4.50k
    return 1;
286
4.92k
}
MD4_Final
Line
Count
Source
241
70
{
242
70
    unsigned char *p = (unsigned char *)c->data;
243
70
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
70
    p[n] = 0x80; /* there is always room for one */
250
70
    n++;
251
252
70
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
20
        memset(p + n, 0, HASH_CBLOCK - n);
258
20
        n = 0;
259
20
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
20
    }
261
    /* Add zero padding - but leave enough room for L */
262
70
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
70
    p += HASH_CBLOCK - 8;
266
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
    (void)HOST_l2c(c->Nh, p);
268
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
70
    (void)HOST_l2c(c->Nl, p);
271
70
    (void)HOST_l2c(c->Nh, p);
272
70
#endif
273
70
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
70
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
70
    c->num = 0;
277
70
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
70
    HASH_MAKE_STRING(c, md);
283
70
#endif
284
285
70
    return 1;
286
70
}
MD5_Final
Line
Count
Source
241
83
{
242
83
    unsigned char *p = (unsigned char *)c->data;
243
83
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
83
    p[n] = 0x80; /* there is always room for one */
250
83
    n++;
251
252
83
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
29
        memset(p + n, 0, HASH_CBLOCK - n);
258
29
        n = 0;
259
29
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
29
    }
261
    /* Add zero padding - but leave enough room for L */
262
83
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
83
    p += HASH_CBLOCK - 8;
266
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
    (void)HOST_l2c(c->Nh, p);
268
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
83
    (void)HOST_l2c(c->Nl, p);
271
83
    (void)HOST_l2c(c->Nh, p);
272
83
#endif
273
83
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
83
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
83
    c->num = 0;
277
83
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
83
    HASH_MAKE_STRING(c, md);
283
83
#endif
284
285
83
    return 1;
286
83
}
RIPEMD160_Final
Line
Count
Source
241
75
{
242
75
    unsigned char *p = (unsigned char *)c->data;
243
75
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
75
    p[n] = 0x80; /* there is always room for one */
250
75
    n++;
251
252
75
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
29
        memset(p + n, 0, HASH_CBLOCK - n);
258
29
        n = 0;
259
29
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
29
    }
261
    /* Add zero padding - but leave enough room for L */
262
75
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
75
    p += HASH_CBLOCK - 8;
266
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
    (void)HOST_l2c(c->Nh, p);
268
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
75
    (void)HOST_l2c(c->Nl, p);
271
75
    (void)HOST_l2c(c->Nh, p);
272
75
#endif
273
75
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
75
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
75
    c->num = 0;
277
75
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
75
    HASH_MAKE_STRING(c, md);
283
75
#endif
284
285
75
    return 1;
286
75
}
SHA1_Final
Line
Count
Source
241
112
{
242
112
    unsigned char *p = (unsigned char *)c->data;
243
112
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
112
    p[n] = 0x80; /* there is always room for one */
250
112
    n++;
251
252
112
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
26
        memset(p + n, 0, HASH_CBLOCK - n);
258
26
        n = 0;
259
26
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
26
    }
261
    /* Add zero padding - but leave enough room for L */
262
112
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
112
    p += HASH_CBLOCK - 8;
266
112
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
112
    (void)HOST_l2c(c->Nh, p);
268
112
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
    (void)HOST_l2c(c->Nl, p);
271
    (void)HOST_l2c(c->Nh, p);
272
#endif
273
112
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
112
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
112
    c->num = 0;
277
112
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
112
    HASH_MAKE_STRING(c, md);
283
112
#endif
284
285
112
    return 1;
286
112
}
SHA256_Final
Line
Count
Source
241
4.50k
{
242
4.50k
    unsigned char *p = (unsigned char *)c->data;
243
4.50k
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
4.50k
    p[n] = 0x80; /* there is always room for one */
250
4.50k
    n++;
251
252
4.50k
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
32
        memset(p + n, 0, HASH_CBLOCK - n);
258
32
        n = 0;
259
32
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
32
    }
261
    /* Add zero padding - but leave enough room for L */
262
4.50k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
4.50k
    p += HASH_CBLOCK - 8;
266
4.50k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
4.50k
    (void)HOST_l2c(c->Nh, p);
268
4.50k
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
    (void)HOST_l2c(c->Nl, p);
271
    (void)HOST_l2c(c->Nh, p);
272
#endif
273
4.50k
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
4.50k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
4.50k
    c->num = 0;
277
4.50k
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
4.50k
    HASH_MAKE_STRING(c, md);
283
4.50k
#endif
284
285
4.50k
    return 1;
286
4.50k
}
ossl_sm3_final
Line
Count
Source
241
79
{
242
79
    unsigned char *p = (unsigned char *)c->data;
243
79
    size_t n = c->num;
244
245
    /*
246
     * Pad the input by adding a 1 bit + K zero bits + input length (L)
247
     * as a 64 bit value. K must align the data to a chunk boundary.
248
     */
249
79
    p[n] = 0x80; /* there is always room for one */
250
79
    n++;
251
252
79
    if (n > (HASH_CBLOCK - 8)) {
253
        /*
254
         * If there is not enough room in the buffer to add L, then fill the
255
         * current buffer with zeros, and process the chunk
256
         */
257
33
        memset(p + n, 0, HASH_CBLOCK - n);
258
33
        n = 0;
259
33
        HASH_BLOCK_DATA_ORDER(c, p, 1);
260
33
    }
261
    /* Add zero padding - but leave enough room for L */
262
79
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
263
264
    /* Add the 64 bit L value to the end of the buffer */
265
79
    p += HASH_CBLOCK - 8;
266
79
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
267
79
    (void)HOST_l2c(c->Nh, p);
268
79
    (void)HOST_l2c(c->Nl, p);
269
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
270
    (void)HOST_l2c(c->Nl, p);
271
    (void)HOST_l2c(c->Nh, p);
272
#endif
273
79
    p -= HASH_CBLOCK;
274
    /* Process the final padded chunk */
275
79
    HASH_BLOCK_DATA_ORDER(c, p, 1);
276
79
    c->num = 0;
277
79
    OPENSSL_cleanse(p, HASH_CBLOCK);
278
279
#ifndef HASH_MAKE_STRING
280
#error "HASH_MAKE_STRING must be defined!"
281
#else
282
79
    HASH_MAKE_STRING(c, md);
283
79
#endif
284
285
79
    return 1;
286
79
}
287
288
#ifndef MD32_REG_T
289
#if defined(__alpha) || defined(__sparcv9) || defined(__mips)
290
#define MD32_REG_T long
291
/*
292
 * This comment was originally written for MD5, which is why it
293
 * discusses A-D. But it basically applies to all 32-bit digests,
294
 * which is why it was moved to common header file.
295
 *
296
 * In case you wonder why A-D are declared as long and not
297
 * as MD5_LONG. Doing so results in slight performance
298
 * boost on LP64 architectures. The catch is we don't
299
 * really care if 32 MSBs of a 64-bit register get polluted
300
 * with eventual overflows as we *save* only 32 LSBs in
301
 * *either* case. Now declaring 'em long excuses the compiler
302
 * from keeping 32 MSBs zeroed resulting in 13% performance
303
 * improvement under SPARC Solaris7/64 and 5% under AlphaLinux.
304
 * Well, to be honest it should say that this *prevents*
305
 * performance degradation.
306
 */
307
#else
308
/*
309
 * Above is not absolute and there are LP64 compilers that
310
 * generate better code if MD32_REG_T is defined int. The above
311
 * pre-processor condition reflects the circumstances under which
312
 * the conclusion was made and is subject to further extension.
313
 */
314
#define MD32_REG_T int
315
#endif
316
#endif
317
318
#endif