Coverage Report

Created: 2026-07-23 06:28

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
1.30G
#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
#endif
124
#endif
125
#endif
126
127
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
128
129
10.7M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
130
10.7M
    l |= (((unsigned long)(*((c)++))) << 16),                    \
131
10.7M
    l |= (((unsigned long)(*((c)++))) << 8),                     \
132
10.7M
    l |= (((unsigned long)(*((c)++)))))
133
4.19G
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
134
4.19G
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
135
4.19G
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
136
4.19G
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
137
4.19G
    l)
138
139
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
140
141
47.0M
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
142
47.0M
    l |= (((unsigned long)(*((c)++))) << 8),               \
143
47.0M
    l |= (((unsigned long)(*((c)++))) << 16),              \
144
47.0M
    l |= (((unsigned long)(*((c)++))) << 24))
145
22.2M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
146
22.2M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
147
22.2M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
148
22.2M
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
149
22.2M
    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
34.5M
{
164
#ifdef HASH_UPDATE_THUNK
165
30.9M
    HASH_CTX *c = (HASH_CTX *)cp;
166
#endif
167
34.5M
    const unsigned char *data = data_;
168
34.5M
    unsigned char *p;
169
34.5M
    HASH_LONG l;
170
34.5M
    size_t n;
171
172
34.5M
    if (ossl_unlikely(len == 0))
173
0
        return 1;
174
175
34.5M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
176
34.5M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
177
0
        c->Nh++;
178
34.5M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
179
                                      * 16-bit */
180
34.5M
    c->Nl = l;
181
182
34.5M
    n = c->num;
183
34.5M
    if (ossl_likely(n != 0)) {
184
        /* Gets here if we already have buffered input data */
185
17.4M
        p = (unsigned char *)c->data;
186
187
17.4M
        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
1.33M
            memcpy(p + n, data, HASH_CBLOCK - n);
193
1.33M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
194
1.33M
            n = HASH_CBLOCK - n;
195
1.33M
            data += n;
196
1.33M
            len -= n;
197
1.33M
            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
1.33M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
205
16.1M
        } else {
206
            /* Otherwise just keep filling the buffer */
207
16.1M
            memcpy(p + n, data, len);
208
16.1M
            c->num += (unsigned int)len;
209
16.1M
            return 1;
210
16.1M
        }
211
17.4M
    }
212
213
18.4M
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
214
18.4M
    if (n > 0) {
215
        /* Process chunks */
216
613k
        HASH_BLOCK_DATA_ORDER(c, data, n);
217
613k
        n *= HASH_CBLOCK;
218
613k
        data += n;
219
613k
        len -= n;
220
613k
    }
221
    /* Buffer any left over data */
222
18.4M
    if (len != 0) {
223
17.8M
        p = (unsigned char *)c->data;
224
17.8M
        c->num = (unsigned int)len;
225
17.8M
        memcpy(p, data, len);
226
17.8M
    }
227
18.4M
    return 1;
228
34.5M
}
MD5_Update
Line
Count
Source
163
1.68M
{
164
#ifdef HASH_UPDATE_THUNK
165
    HASH_CTX *c = (HASH_CTX *)cp;
166
#endif
167
1.68M
    const unsigned char *data = data_;
168
1.68M
    unsigned char *p;
169
1.68M
    HASH_LONG l;
170
1.68M
    size_t n;
171
172
1.68M
    if (ossl_unlikely(len == 0))
173
0
        return 1;
174
175
1.68M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
176
1.68M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
177
0
        c->Nh++;
178
1.68M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
179
                                      * 16-bit */
180
1.68M
    c->Nl = l;
181
182
1.68M
    n = c->num;
183
1.68M
    if (ossl_likely(n != 0)) {
184
        /* Gets here if we already have buffered input data */
185
967k
        p = (unsigned char *)c->data;
186
187
967k
        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
259k
            memcpy(p + n, data, HASH_CBLOCK - n);
193
259k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
194
259k
            n = HASH_CBLOCK - n;
195
259k
            data += n;
196
259k
            len -= n;
197
259k
            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
259k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
205
708k
        } else {
206
            /* Otherwise just keep filling the buffer */
207
708k
            memcpy(p + n, data, len);
208
708k
            c->num += (unsigned int)len;
209
708k
            return 1;
210
708k
        }
211
967k
    }
212
213
978k
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
214
978k
    if (n > 0) {
215
        /* Process chunks */
216
69.4k
        HASH_BLOCK_DATA_ORDER(c, data, n);
217
69.4k
        n *= HASH_CBLOCK;
218
69.4k
        data += n;
219
69.4k
        len -= n;
220
69.4k
    }
221
    /* Buffer any left over data */
222
978k
    if (len != 0) {
223
877k
        p = (unsigned char *)c->data;
224
877k
        c->num = (unsigned int)len;
225
877k
        memcpy(p, data, len);
226
877k
    }
227
978k
    return 1;
228
1.68M
}
RIPEMD160_Update
Line
Count
Source
163
1.32M
{
164
#ifdef HASH_UPDATE_THUNK
165
    HASH_CTX *c = (HASH_CTX *)cp;
166
#endif
167
1.32M
    const unsigned char *data = data_;
168
1.32M
    unsigned char *p;
169
1.32M
    HASH_LONG l;
170
1.32M
    size_t n;
171
172
1.32M
    if (ossl_unlikely(len == 0))
173
0
        return 1;
174
175
1.32M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
176
1.32M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
177
0
        c->Nh++;
178
1.32M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
179
                                      * 16-bit */
180
1.32M
    c->Nl = l;
181
182
1.32M
    n = c->num;
183
1.32M
    if (ossl_likely(n != 0)) {
184
        /* Gets here if we already have buffered input data */
185
659k
        p = (unsigned char *)c->data;
186
187
659k
        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
262k
            memcpy(p + n, data, HASH_CBLOCK - n);
193
262k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
194
262k
            n = HASH_CBLOCK - n;
195
262k
            data += n;
196
262k
            len -= n;
197
262k
            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
262k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
205
396k
        } else {
206
            /* Otherwise just keep filling the buffer */
207
396k
            memcpy(p + n, data, len);
208
396k
            c->num += (unsigned int)len;
209
396k
            return 1;
210
396k
        }
211
659k
    }
212
213
924k
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
214
924k
    if (n > 0) {
215
        /* Process chunks */
216
81.4k
        HASH_BLOCK_DATA_ORDER(c, data, n);
217
81.4k
        n *= HASH_CBLOCK;
218
81.4k
        data += n;
219
81.4k
        len -= n;
220
81.4k
    }
221
    /* Buffer any left over data */
222
924k
    if (len != 0) {
223
848k
        p = (unsigned char *)c->data;
224
848k
        c->num = (unsigned int)len;
225
848k
        memcpy(p, data, len);
226
848k
    }
227
924k
    return 1;
228
1.32M
}
SHA1_Update_thunk
Line
Count
Source
163
1.20M
{
164
1.20M
#ifdef HASH_UPDATE_THUNK
165
1.20M
    HASH_CTX *c = (HASH_CTX *)cp;
166
1.20M
#endif
167
1.20M
    const unsigned char *data = data_;
168
1.20M
    unsigned char *p;
169
1.20M
    HASH_LONG l;
170
1.20M
    size_t n;
171
172
1.20M
    if (ossl_unlikely(len == 0))
173
0
        return 1;
174
175
1.20M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
176
1.20M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
177
0
        c->Nh++;
178
1.20M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
179
                                      * 16-bit */
180
1.20M
    c->Nl = l;
181
182
1.20M
    n = c->num;
183
1.20M
    if (ossl_likely(n != 0)) {
184
        /* Gets here if we already have buffered input data */
185
653k
        p = (unsigned char *)c->data;
186
187
653k
        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
187k
            memcpy(p + n, data, HASH_CBLOCK - n);
193
187k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
194
187k
            n = HASH_CBLOCK - n;
195
187k
            data += n;
196
187k
            len -= n;
197
187k
            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
187k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
205
465k
        } else {
206
            /* Otherwise just keep filling the buffer */
207
465k
            memcpy(p + n, data, len);
208
465k
            c->num += (unsigned int)len;
209
465k
            return 1;
210
465k
        }
211
653k
    }
212
213
735k
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
214
735k
    if (n > 0) {
215
        /* Process chunks */
216
123k
        HASH_BLOCK_DATA_ORDER(c, data, n);
217
123k
        n *= HASH_CBLOCK;
218
123k
        data += n;
219
123k
        len -= n;
220
123k
    }
221
    /* Buffer any left over data */
222
735k
    if (len != 0) {
223
634k
        p = (unsigned char *)c->data;
224
634k
        c->num = (unsigned int)len;
225
634k
        memcpy(p, data, len);
226
634k
    }
227
735k
    return 1;
228
1.20M
}
SHA256_Update_thunk
Line
Count
Source
163
29.6M
{
164
29.6M
#ifdef HASH_UPDATE_THUNK
165
29.6M
    HASH_CTX *c = (HASH_CTX *)cp;
166
29.6M
#endif
167
29.6M
    const unsigned char *data = data_;
168
29.6M
    unsigned char *p;
169
29.6M
    HASH_LONG l;
170
29.6M
    size_t n;
171
172
29.6M
    if (ossl_unlikely(len == 0))
173
0
        return 1;
174
175
29.6M
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
176
29.6M
    if (ossl_unlikely(l < c->Nl)) /* overflow */
177
0
        c->Nh++;
178
29.6M
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
179
                                      * 16-bit */
180
29.6M
    c->Nl = l;
181
182
29.6M
    n = c->num;
183
29.6M
    if (ossl_likely(n != 0)) {
184
        /* Gets here if we already have buffered input data */
185
14.5M
        p = (unsigned char *)c->data;
186
187
14.5M
        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
334k
            memcpy(p + n, data, HASH_CBLOCK - n);
193
334k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
194
334k
            n = HASH_CBLOCK - n;
195
334k
            data += n;
196
334k
            len -= n;
197
334k
            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
334k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
205
14.1M
        } else {
206
            /* Otherwise just keep filling the buffer */
207
14.1M
            memcpy(p + n, data, len);
208
14.1M
            c->num += (unsigned int)len;
209
14.1M
            return 1;
210
14.1M
        }
211
14.5M
    }
212
213
15.5M
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
214
15.5M
    if (n > 0) {
215
        /* Process chunks */
216
276k
        HASH_BLOCK_DATA_ORDER(c, data, n);
217
276k
        n *= HASH_CBLOCK;
218
276k
        data += n;
219
276k
        len -= n;
220
276k
    }
221
    /* Buffer any left over data */
222
15.5M
    if (len != 0) {
223
15.2M
        p = (unsigned char *)c->data;
224
15.2M
        c->num = (unsigned int)len;
225
15.2M
        memcpy(p, data, len);
226
15.2M
    }
227
15.5M
    return 1;
228
29.6M
}
ossl_sm3_update
Line
Count
Source
163
678k
{
164
#ifdef HASH_UPDATE_THUNK
165
    HASH_CTX *c = (HASH_CTX *)cp;
166
#endif
167
678k
    const unsigned char *data = data_;
168
678k
    unsigned char *p;
169
678k
    HASH_LONG l;
170
678k
    size_t n;
171
172
678k
    if (ossl_unlikely(len == 0))
173
0
        return 1;
174
175
678k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
176
678k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
177
0
        c->Nh++;
178
678k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
179
                                      * 16-bit */
180
678k
    c->Nl = l;
181
182
678k
    n = c->num;
183
678k
    if (ossl_likely(n != 0)) {
184
        /* Gets here if we already have buffered input data */
185
630k
        p = (unsigned char *)c->data;
186
187
630k
        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
287k
            memcpy(p + n, data, HASH_CBLOCK - n);
193
287k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
194
287k
            n = HASH_CBLOCK - n;
195
287k
            data += n;
196
287k
            len -= n;
197
287k
            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
287k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
205
343k
        } else {
206
            /* Otherwise just keep filling the buffer */
207
343k
            memcpy(p + n, data, len);
208
343k
            c->num += (unsigned int)len;
209
343k
            return 1;
210
343k
        }
211
630k
    }
212
213
334k
    n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */
214
334k
    if (n > 0) {
215
        /* Process chunks */
216
63.1k
        HASH_BLOCK_DATA_ORDER(c, data, n);
217
63.1k
        n *= HASH_CBLOCK;
218
63.1k
        data += n;
219
63.1k
        len -= n;
220
63.1k
    }
221
    /* Buffer any left over data */
222
334k
    if (len != 0) {
223
290k
        p = (unsigned char *)c->data;
224
290k
        c->num = (unsigned int)len;
225
290k
        memcpy(p, data, len);
226
290k
    }
227
334k
    return 1;
228
678k
}
229
230
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
231
1.62M
{
232
1.62M
    HASH_BLOCK_DATA_ORDER(c, data, 1); /* Process a single chunk */
233
1.62M
}
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
SHA1_Transform
Line
Count
Source
231
1.38M
{
232
1.38M
    HASH_BLOCK_DATA_ORDER(c, data, 1); /* Process a single chunk */
233
1.38M
}
SHA256_Transform
Line
Count
Source
231
242k
{
232
242k
    HASH_BLOCK_DATA_ORDER(c, data, 1); /* Process a single chunk */
233
242k
}
Unexecuted instantiation: ossl_sm3_transform
234
235
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
236
427M
{
237
427M
    unsigned char *p = (unsigned char *)c->data;
238
427M
    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
427M
    p[n] = 0x80; /* there is always room for one */
245
427M
    n++;
246
247
427M
    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
103k
        memset(p + n, 0, HASH_CBLOCK - n);
253
103k
        n = 0;
254
103k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
255
103k
    }
256
    /* Add zero padding - but leave enough room for L */
257
427M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
258
259
    /* Add the 64 bit L value to the end of the buffer */
260
427M
    p += HASH_CBLOCK - 8;
261
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
262
423M
    (void)HOST_l2c(c->Nh, p);
263
423M
    (void)HOST_l2c(c->Nl, p);
264
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
265
3.33M
    (void)HOST_l2c(c->Nl, p);
266
3.33M
    (void)HOST_l2c(c->Nh, p);
267
#endif
268
427M
    p -= HASH_CBLOCK;
269
    /* Process the final padded chunk */
270
427M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
271
427M
    c->num = 0;
272
427M
    OPENSSL_cleanse(p, HASH_CBLOCK);
273
274
#ifndef HASH_MAKE_STRING
275
#error "HASH_MAKE_STRING must be defined!"
276
#else
277
427M
    HASH_MAKE_STRING(c, md);
278
422M
#endif
279
280
422M
    return 1;
281
427M
}
MD5_Final
Line
Count
Source
236
1.16M
{
237
1.16M
    unsigned char *p = (unsigned char *)c->data;
238
1.16M
    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
1.16M
    p[n] = 0x80; /* there is always room for one */
245
1.16M
    n++;
246
247
1.16M
    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
12.8k
        memset(p + n, 0, HASH_CBLOCK - n);
253
12.8k
        n = 0;
254
12.8k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
255
12.8k
    }
256
    /* Add zero padding - but leave enough room for L */
257
1.16M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
258
259
    /* Add the 64 bit L value to the end of the buffer */
260
1.16M
    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
1.16M
    (void)HOST_l2c(c->Nl, p);
266
1.16M
    (void)HOST_l2c(c->Nh, p);
267
1.16M
#endif
268
1.16M
    p -= HASH_CBLOCK;
269
    /* Process the final padded chunk */
270
1.16M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
271
1.16M
    c->num = 0;
272
1.16M
    OPENSSL_cleanse(p, HASH_CBLOCK);
273
274
#ifndef HASH_MAKE_STRING
275
#error "HASH_MAKE_STRING must be defined!"
276
#else
277
1.16M
    HASH_MAKE_STRING(c, md);
278
1.16M
#endif
279
280
1.16M
    return 1;
281
1.16M
}
RIPEMD160_Final
Line
Count
Source
236
2.17M
{
237
2.17M
    unsigned char *p = (unsigned char *)c->data;
238
2.17M
    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
2.17M
    p[n] = 0x80; /* there is always room for one */
245
2.17M
    n++;
246
247
2.17M
    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
210
        memset(p + n, 0, HASH_CBLOCK - n);
253
210
        n = 0;
254
210
        HASH_BLOCK_DATA_ORDER(c, p, 1);
255
210
    }
256
    /* Add zero padding - but leave enough room for L */
257
2.17M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
258
259
    /* Add the 64 bit L value to the end of the buffer */
260
2.17M
    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
2.17M
    (void)HOST_l2c(c->Nl, p);
266
2.17M
    (void)HOST_l2c(c->Nh, p);
267
2.17M
#endif
268
2.17M
    p -= HASH_CBLOCK;
269
    /* Process the final padded chunk */
270
2.17M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
271
2.17M
    c->num = 0;
272
2.17M
    OPENSSL_cleanse(p, HASH_CBLOCK);
273
274
#ifndef HASH_MAKE_STRING
275
#error "HASH_MAKE_STRING must be defined!"
276
#else
277
2.17M
    HASH_MAKE_STRING(c, md);
278
2.17M
#endif
279
280
2.17M
    return 1;
281
2.17M
}
SHA1_Final
Line
Count
Source
236
1.83M
{
237
1.83M
    unsigned char *p = (unsigned char *)c->data;
238
1.83M
    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
1.83M
    p[n] = 0x80; /* there is always room for one */
245
1.83M
    n++;
246
247
1.83M
    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
81.0k
        memset(p + n, 0, HASH_CBLOCK - n);
253
81.0k
        n = 0;
254
81.0k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
255
81.0k
    }
256
    /* Add zero padding - but leave enough room for L */
257
1.83M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
258
259
    /* Add the 64 bit L value to the end of the buffer */
260
1.83M
    p += HASH_CBLOCK - 8;
261
1.83M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
262
1.83M
    (void)HOST_l2c(c->Nh, p);
263
1.83M
    (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
1.83M
    p -= HASH_CBLOCK;
269
    /* Process the final padded chunk */
270
1.83M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
271
1.83M
    c->num = 0;
272
1.83M
    OPENSSL_cleanse(p, HASH_CBLOCK);
273
274
#ifndef HASH_MAKE_STRING
275
#error "HASH_MAKE_STRING must be defined!"
276
#else
277
1.83M
    HASH_MAKE_STRING(c, md);
278
1.83M
#endif
279
280
1.83M
    return 1;
281
1.83M
}
SHA256_Final
Line
Count
Source
236
422M
{
237
422M
    unsigned char *p = (unsigned char *)c->data;
238
422M
    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
422M
    p[n] = 0x80; /* there is always room for one */
245
422M
    n++;
246
247
422M
    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
9.36k
        memset(p + n, 0, HASH_CBLOCK - n);
253
9.36k
        n = 0;
254
9.36k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
255
9.36k
    }
256
    /* Add zero padding - but leave enough room for L */
257
422M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
258
259
    /* Add the 64 bit L value to the end of the buffer */
260
422M
    p += HASH_CBLOCK - 8;
261
422M
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
262
422M
    (void)HOST_l2c(c->Nh, p);
263
422M
    (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
422M
    p -= HASH_CBLOCK;
269
    /* Process the final padded chunk */
270
422M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
271
422M
    c->num = 0;
272
422M
    OPENSSL_cleanse(p, HASH_CBLOCK);
273
274
#ifndef HASH_MAKE_STRING
275
#error "HASH_MAKE_STRING must be defined!"
276
#else
277
422M
    HASH_MAKE_STRING(c, md);
278
422M
#endif
279
280
422M
    return 1;
281
422M
}
ossl_sm3_final
Line
Count
Source
236
3.12k
{
237
3.12k
    unsigned char *p = (unsigned char *)c->data;
238
3.12k
    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
3.12k
    p[n] = 0x80; /* there is always room for one */
245
3.12k
    n++;
246
247
3.12k
    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
73
        memset(p + n, 0, HASH_CBLOCK - n);
253
73
        n = 0;
254
73
        HASH_BLOCK_DATA_ORDER(c, p, 1);
255
73
    }
256
    /* Add zero padding - but leave enough room for L */
257
3.12k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
258
259
    /* Add the 64 bit L value to the end of the buffer */
260
3.12k
    p += HASH_CBLOCK - 8;
261
3.12k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
262
3.12k
    (void)HOST_l2c(c->Nh, p);
263
3.12k
    (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
3.12k
    p -= HASH_CBLOCK;
269
    /* Process the final padded chunk */
270
3.12k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
271
3.12k
    c->num = 0;
272
3.12k
    OPENSSL_cleanse(p, HASH_CBLOCK);
273
274
#ifndef HASH_MAKE_STRING
275
#error "HASH_MAKE_STRING must be defined!"
276
#else
277
3.12k
    HASH_MAKE_STRING(c, md);
278
3.12k
#endif
279
280
3.12k
    return 1;
281
3.12k
}
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