Coverage Report

Created: 2025-06-13 06:58

/src/openssl30/include/crypto/md32_common.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1999-2018 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
#include <openssl/crypto.h>
67
68
#if !defined(DATA_ORDER_IS_BIG_ENDIAN) && !defined(DATA_ORDER_IS_LITTLE_ENDIAN)
69
# error "DATA_ORDER must be defined!"
70
#endif
71
72
#ifndef HASH_CBLOCK
73
# error "HASH_CBLOCK must be defined!"
74
#endif
75
#ifndef HASH_LONG
76
# error "HASH_LONG must be defined!"
77
#endif
78
#ifndef HASH_CTX
79
# error "HASH_CTX must be defined!"
80
#endif
81
82
#ifndef HASH_UPDATE
83
# error "HASH_UPDATE must be defined!"
84
#endif
85
#ifndef HASH_TRANSFORM
86
# error "HASH_TRANSFORM must be defined!"
87
#endif
88
#ifndef HASH_FINAL
89
# error "HASH_FINAL must be defined!"
90
#endif
91
92
#ifndef HASH_BLOCK_DATA_ORDER
93
# error "HASH_BLOCK_DATA_ORDER must be defined!"
94
#endif
95
96
458M
#define ROTATE(a,n)     (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
97
98
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
99
100
2.94M
# define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))<<24),          \
101
2.94M
                         l|=(((unsigned long)(*((c)++)))<<16),          \
102
2.94M
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
103
2.94M
                         l|=(((unsigned long)(*((c)++)))    )           )
104
9.06M
# define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)>>24)&0xff),      \
105
9.06M
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
106
9.06M
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
107
9.06M
                         *((c)++)=(unsigned char)(((l)    )&0xff),      \
108
9.06M
                         l)
109
110
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
111
112
17.9M
# define HOST_c2l(c,l)  (l =(((unsigned long)(*((c)++)))    ),          \
113
17.9M
                         l|=(((unsigned long)(*((c)++)))<< 8),          \
114
17.9M
                         l|=(((unsigned long)(*((c)++)))<<16),          \
115
17.9M
                         l|=(((unsigned long)(*((c)++)))<<24)           )
116
9.22M
# define HOST_l2c(l,c)  (*((c)++)=(unsigned char)(((l)    )&0xff),      \
117
9.22M
                         *((c)++)=(unsigned char)(((l)>> 8)&0xff),      \
118
9.22M
                         *((c)++)=(unsigned char)(((l)>>16)&0xff),      \
119
9.22M
                         *((c)++)=(unsigned char)(((l)>>24)&0xff),      \
120
9.22M
                         l)
121
122
#endif
123
124
/*
125
 * Time for some action :-)
126
 */
127
128
int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len)
129
916M
{
130
916M
    const unsigned char *data = data_;
131
916M
    unsigned char *p;
132
916M
    HASH_LONG l;
133
916M
    size_t n;
134
135
916M
    if (len == 0)
136
0
        return 1;
137
138
916M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
916M
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
916M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
916M
    c->Nl = l;
144
145
916M
    n = c->num;
146
916M
    if (n != 0) {
147
456M
        p = (unsigned char *)c->data;
148
149
456M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
228M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
228M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
228M
            n = HASH_CBLOCK - n;
153
228M
            data += n;
154
228M
            len -= n;
155
228M
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
228M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
228M
        } else {
164
228M
            memcpy(p + n, data, len);
165
228M
            c->num += (unsigned int)len;
166
228M
            return 1;
167
228M
        }
168
456M
    }
169
170
688M
    n = len / HASH_CBLOCK;
171
688M
    if (n > 0) {
172
1.05M
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
1.05M
        n *= HASH_CBLOCK;
174
1.05M
        data += n;
175
1.05M
        len -= n;
176
1.05M
    }
177
178
688M
    if (len != 0) {
179
459M
        p = (unsigned char *)c->data;
180
459M
        c->num = (unsigned int)len;
181
459M
        memcpy(p, data, len);
182
459M
    }
183
688M
    return 1;
184
916M
}
Unexecuted instantiation: MD4_Update
MD5_Update
Line
Count
Source
129
531k
{
130
531k
    const unsigned char *data = data_;
131
531k
    unsigned char *p;
132
531k
    HASH_LONG l;
133
531k
    size_t n;
134
135
531k
    if (len == 0)
136
0
        return 1;
137
138
531k
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
531k
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
531k
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
531k
    c->Nl = l;
144
145
531k
    n = c->num;
146
531k
    if (n != 0) {
147
177k
        p = (unsigned char *)c->data;
148
149
177k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
75.3k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
75.3k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
75.3k
            n = HASH_CBLOCK - n;
153
75.3k
            data += n;
154
75.3k
            len -= n;
155
75.3k
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
75.3k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
102k
        } else {
164
102k
            memcpy(p + n, data, len);
165
102k
            c->num += (unsigned int)len;
166
102k
            return 1;
167
102k
        }
168
177k
    }
169
170
428k
    n = len / HASH_CBLOCK;
171
428k
    if (n > 0) {
172
42.1k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
42.1k
        n *= HASH_CBLOCK;
174
42.1k
        data += n;
175
42.1k
        len -= n;
176
42.1k
    }
177
178
428k
    if (len != 0) {
179
394k
        p = (unsigned char *)c->data;
180
394k
        c->num = (unsigned int)len;
181
394k
        memcpy(p, data, len);
182
394k
    }
183
428k
    return 1;
184
531k
}
RIPEMD160_Update
Line
Count
Source
129
1.03M
{
130
1.03M
    const unsigned char *data = data_;
131
1.03M
    unsigned char *p;
132
1.03M
    HASH_LONG l;
133
1.03M
    size_t n;
134
135
1.03M
    if (len == 0)
136
0
        return 1;
137
138
1.03M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
1.03M
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
1.03M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
1.03M
    c->Nl = l;
144
145
1.03M
    n = c->num;
146
1.03M
    if (n != 0) {
147
268
        p = (unsigned char *)c->data;
148
149
268
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
105
            memcpy(p + n, data, HASH_CBLOCK - n);
151
105
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
105
            n = HASH_CBLOCK - n;
153
105
            data += n;
154
105
            len -= n;
155
105
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
105
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
163
        } else {
164
163
            memcpy(p + n, data, len);
165
163
            c->num += (unsigned int)len;
166
163
            return 1;
167
163
        }
168
268
    }
169
170
1.03M
    n = len / HASH_CBLOCK;
171
1.03M
    if (n > 0) {
172
995
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
995
        n *= HASH_CBLOCK;
174
995
        data += n;
175
995
        len -= n;
176
995
    }
177
178
1.03M
    if (len != 0) {
179
1.03M
        p = (unsigned char *)c->data;
180
1.03M
        c->num = (unsigned int)len;
181
1.03M
        memcpy(p, data, len);
182
1.03M
    }
183
1.03M
    return 1;
184
1.03M
}
SHA1_Update
Line
Count
Source
129
1.32M
{
130
1.32M
    const unsigned char *data = data_;
131
1.32M
    unsigned char *p;
132
1.32M
    HASH_LONG l;
133
1.32M
    size_t n;
134
135
1.32M
    if (len == 0)
136
0
        return 1;
137
138
1.32M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
1.32M
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
1.32M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
1.32M
    c->Nl = l;
144
145
1.32M
    n = c->num;
146
1.32M
    if (n != 0) {
147
317k
        p = (unsigned char *)c->data;
148
149
317k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
114k
            memcpy(p + n, data, HASH_CBLOCK - n);
151
114k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
114k
            n = HASH_CBLOCK - n;
153
114k
            data += n;
154
114k
            len -= n;
155
114k
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
114k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
203k
        } else {
164
203k
            memcpy(p + n, data, len);
165
203k
            c->num += (unsigned int)len;
166
203k
            return 1;
167
203k
        }
168
317k
    }
169
170
1.11M
    n = len / HASH_CBLOCK;
171
1.11M
    if (n > 0) {
172
286k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
286k
        n *= HASH_CBLOCK;
174
286k
        data += n;
175
286k
        len -= n;
176
286k
    }
177
178
1.11M
    if (len != 0) {
179
1.05M
        p = (unsigned char *)c->data;
180
1.05M
        c->num = (unsigned int)len;
181
1.05M
        memcpy(p, data, len);
182
1.05M
    }
183
1.11M
    return 1;
184
1.32M
}
SHA256_Update
Line
Count
Source
129
913M
{
130
913M
    const unsigned char *data = data_;
131
913M
    unsigned char *p;
132
913M
    HASH_LONG l;
133
913M
    size_t n;
134
135
913M
    if (len == 0)
136
0
        return 1;
137
138
913M
    l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL;
139
913M
    if (l < c->Nl)              /* overflow */
140
0
        c->Nh++;
141
913M
    c->Nh += (HASH_LONG) (len >> 29); /* might cause compiler warning on
142
                                       * 16-bit */
143
913M
    c->Nl = l;
144
145
913M
    n = c->num;
146
913M
    if (n != 0) {
147
456M
        p = (unsigned char *)c->data;
148
149
456M
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
150
228M
            memcpy(p + n, data, HASH_CBLOCK - n);
151
228M
            HASH_BLOCK_DATA_ORDER(c, p, 1);
152
228M
            n = HASH_CBLOCK - n;
153
228M
            data += n;
154
228M
            len -= n;
155
228M
            c->num = 0;
156
            /*
157
             * We use memset rather than OPENSSL_cleanse() here deliberately.
158
             * Using OPENSSL_cleanse() here could be a performance issue. It
159
             * will get properly cleansed on finalisation so this isn't a
160
             * security problem.
161
             */
162
228M
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
163
228M
        } else {
164
228M
            memcpy(p + n, data, len);
165
228M
            c->num += (unsigned int)len;
166
228M
            return 1;
167
228M
        }
168
456M
    }
169
170
685M
    n = len / HASH_CBLOCK;
171
685M
    if (n > 0) {
172
730k
        HASH_BLOCK_DATA_ORDER(c, data, n);
173
730k
        n *= HASH_CBLOCK;
174
730k
        data += n;
175
730k
        len -= n;
176
730k
    }
177
178
685M
    if (len != 0) {
179
457M
        p = (unsigned char *)c->data;
180
457M
        c->num = (unsigned int)len;
181
457M
        memcpy(p, data, len);
182
457M
    }
183
685M
    return 1;
184
913M
}
Unexecuted instantiation: ossl_sm3_update
185
186
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
187
325k
{
188
325k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
325k
}
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
SHA1_Transform
Line
Count
Source
187
230k
{
188
230k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
230k
}
SHA256_Transform
Line
Count
Source
187
95.4k
{
188
95.4k
    HASH_BLOCK_DATA_ORDER(c, data, 1);
189
95.4k
}
Unexecuted instantiation: ossl_sm3_transform
190
191
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
192
2.57M
{
193
2.57M
    unsigned char *p = (unsigned char *)c->data;
194
2.57M
    size_t n = c->num;
195
196
2.57M
    p[n] = 0x80;                /* there is always room for one */
197
2.57M
    n++;
198
199
2.57M
    if (n > (HASH_CBLOCK - 8)) {
200
64.4k
        memset(p + n, 0, HASH_CBLOCK - n);
201
64.4k
        n = 0;
202
64.4k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
64.4k
    }
204
2.57M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
2.57M
    p += HASH_CBLOCK - 8;
207
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
1.20M
    (void)HOST_l2c(c->Nh, p);
209
1.20M
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
1.36M
    (void)HOST_l2c(c->Nl, p);
212
1.36M
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
2.57M
    p -= HASH_CBLOCK;
215
2.57M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
2.57M
    c->num = 0;
217
2.57M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
2.57M
    HASH_MAKE_STRING(c, md);
223
237k
#endif
224
225
237k
    return 1;
226
2.57M
}
Unexecuted instantiation: MD4_Final
MD5_Final
Line
Count
Source
192
335k
{
193
335k
    unsigned char *p = (unsigned char *)c->data;
194
335k
    size_t n = c->num;
195
196
335k
    p[n] = 0x80;                /* there is always room for one */
197
335k
    n++;
198
199
335k
    if (n > (HASH_CBLOCK - 8)) {
200
2.80k
        memset(p + n, 0, HASH_CBLOCK - n);
201
2.80k
        n = 0;
202
2.80k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
2.80k
    }
204
335k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
335k
    p += HASH_CBLOCK - 8;
207
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
    (void)HOST_l2c(c->Nh, p);
209
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
335k
    (void)HOST_l2c(c->Nl, p);
212
335k
    (void)HOST_l2c(c->Nh, p);
213
335k
#endif
214
335k
    p -= HASH_CBLOCK;
215
335k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
335k
    c->num = 0;
217
335k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
335k
    HASH_MAKE_STRING(c, md);
223
335k
#endif
224
225
335k
    return 1;
226
335k
}
RIPEMD160_Final
Line
Count
Source
192
1.03M
{
193
1.03M
    unsigned char *p = (unsigned char *)c->data;
194
1.03M
    size_t n = c->num;
195
196
1.03M
    p[n] = 0x80;                /* there is always room for one */
197
1.03M
    n++;
198
199
1.03M
    if (n > (HASH_CBLOCK - 8)) {
200
51
        memset(p + n, 0, HASH_CBLOCK - n);
201
51
        n = 0;
202
51
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
51
    }
204
1.03M
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
1.03M
    p += HASH_CBLOCK - 8;
207
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
    (void)HOST_l2c(c->Nh, p);
209
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
1.03M
    (void)HOST_l2c(c->Nl, p);
212
1.03M
    (void)HOST_l2c(c->Nh, p);
213
1.03M
#endif
214
1.03M
    p -= HASH_CBLOCK;
215
1.03M
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
1.03M
    c->num = 0;
217
1.03M
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
1.03M
    HASH_MAKE_STRING(c, md);
223
1.03M
#endif
224
225
1.03M
    return 1;
226
1.03M
}
SHA1_Final
Line
Count
Source
192
970k
{
193
970k
    unsigned char *p = (unsigned char *)c->data;
194
970k
    size_t n = c->num;
195
196
970k
    p[n] = 0x80;                /* there is always room for one */
197
970k
    n++;
198
199
970k
    if (n > (HASH_CBLOCK - 8)) {
200
60.8k
        memset(p + n, 0, HASH_CBLOCK - n);
201
60.8k
        n = 0;
202
60.8k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
60.8k
    }
204
970k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
970k
    p += HASH_CBLOCK - 8;
207
970k
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
970k
    (void)HOST_l2c(c->Nh, p);
209
970k
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
    (void)HOST_l2c(c->Nl, p);
212
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
970k
    p -= HASH_CBLOCK;
215
970k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
970k
    c->num = 0;
217
970k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
970k
    HASH_MAKE_STRING(c, md);
223
970k
#endif
224
225
970k
    return 1;
226
970k
}
SHA256_Final
Line
Count
Source
192
237k
{
193
237k
    unsigned char *p = (unsigned char *)c->data;
194
237k
    size_t n = c->num;
195
196
237k
    p[n] = 0x80;                /* there is always room for one */
197
237k
    n++;
198
199
237k
    if (n > (HASH_CBLOCK - 8)) {
200
744
        memset(p + n, 0, HASH_CBLOCK - n);
201
744
        n = 0;
202
744
        HASH_BLOCK_DATA_ORDER(c, p, 1);
203
744
    }
204
237k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
205
206
237k
    p += HASH_CBLOCK - 8;
207
237k
#if   defined(DATA_ORDER_IS_BIG_ENDIAN)
208
237k
    (void)HOST_l2c(c->Nh, p);
209
237k
    (void)HOST_l2c(c->Nl, p);
210
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
211
    (void)HOST_l2c(c->Nl, p);
212
    (void)HOST_l2c(c->Nh, p);
213
#endif
214
237k
    p -= HASH_CBLOCK;
215
237k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
216
237k
    c->num = 0;
217
237k
    OPENSSL_cleanse(p, HASH_CBLOCK);
218
219
#ifndef HASH_MAKE_STRING
220
# error "HASH_MAKE_STRING must be defined!"
221
#else
222
237k
    HASH_MAKE_STRING(c, md);
223
237k
#endif
224
225
237k
    return 1;
226
237k
}
227
228
#ifndef MD32_REG_T
229
# if defined(__alpha) || defined(__sparcv9) || defined(__mips)
230
#  define MD32_REG_T long
231
/*
232
 * This comment was originally written for MD5, which is why it
233
 * discusses A-D. But it basically applies to all 32-bit digests,
234
 * which is why it was moved to common header file.
235
 *
236
 * In case you wonder why A-D are declared as long and not
237
 * as MD5_LONG. Doing so results in slight performance
238
 * boost on LP64 architectures. The catch is we don't
239
 * really care if 32 MSBs of a 64-bit register get polluted
240
 * with eventual overflows as we *save* only 32 LSBs in
241
 * *either* case. Now declaring 'em long excuses the compiler
242
 * from keeping 32 MSBs zeroed resulting in 13% performance
243
 * improvement under SPARC Solaris7/64 and 5% under AlphaLinux.
244
 * Well, to be honest it should say that this *prevents*
245
 * performance degradation.
246
 */
247
# else
248
/*
249
 * Above is not absolute and there are LP64 compilers that
250
 * generate better code if MD32_REG_T is defined int. The above
251
 * pre-processor condition reflects the circumstances under which
252
 * the conclusion was made and is subject to further extension.
253
 */
254
#  define MD32_REG_T int
255
# endif
256
#endif