Coverage Report

Created: 2026-04-28 06:29

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