/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 | 0 | #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 | 0 | #define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \ |
135 | 0 | l |= (((unsigned long)(*((c)++))) << 16), \ |
136 | 0 | l |= (((unsigned long)(*((c)++))) << 8), \ |
137 | 0 | l |= (((unsigned long)(*((c)++))))) |
138 | 1.03M | #define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \ |
139 | 1.03M | *((c)++) = (unsigned char)(((l) >> 16) & 0xff), \ |
140 | 1.03M | *((c)++) = (unsigned char)(((l) >> 8) & 0xff), \ |
141 | 1.03M | *((c)++) = (unsigned char)(((l)) & 0xff), \ |
142 | 1.03M | l) |
143 | | |
144 | | #elif defined(DATA_ORDER_IS_LITTLE_ENDIAN) |
145 | | |
146 | 0 | #define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \ |
147 | 0 | l |= (((unsigned long)(*((c)++))) << 8), \ |
148 | 0 | l |= (((unsigned long)(*((c)++))) << 16), \ |
149 | 0 | l |= (((unsigned long)(*((c)++))) << 24)) |
150 | 0 | #define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \ |
151 | 0 | *((c)++) = (unsigned char)(((l) >> 8) & 0xff), \ |
152 | 0 | *((c)++) = (unsigned char)(((l) >> 16) & 0xff), \ |
153 | 0 | *((c)++) = (unsigned char)(((l) >> 24) & 0xff), \ |
154 | 0 | 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 | 111k | { |
169 | | #ifdef HASH_UPDATE_THUNK |
170 | 111k | HASH_CTX *c = (HASH_CTX *)cp; |
171 | | #endif |
172 | 111k | const unsigned char *data = data_; |
173 | 111k | unsigned char *p; |
174 | 111k | HASH_LONG l; |
175 | 111k | size_t n; |
176 | | |
177 | 111k | if (ossl_unlikely(len == 0)) |
178 | 0 | return 1; |
179 | | |
180 | 111k | l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL; |
181 | 111k | if (ossl_unlikely(l < c->Nl)) /* overflow */ |
182 | 0 | c->Nh++; |
183 | 111k | c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on |
184 | | * 16-bit */ |
185 | 111k | c->Nl = l; |
186 | | |
187 | 111k | n = c->num; |
188 | 111k | if (ossl_likely(n != 0)) { |
189 | | /* Gets here if we already have buffered input data */ |
190 | 3.22k | p = (unsigned char *)c->data; |
191 | | |
192 | 3.22k | 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 | 3.22k | memcpy(p + n, data, HASH_CBLOCK - n); |
198 | 3.22k | HASH_BLOCK_DATA_ORDER(c, p, 1); |
199 | 3.22k | n = HASH_CBLOCK - n; |
200 | 3.22k | data += n; |
201 | 3.22k | len -= n; |
202 | 3.22k | 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 | 3.22k | memset(p, 0, HASH_CBLOCK); /* keep it zeroed */ |
210 | 3.22k | } 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 | 3.22k | } |
217 | | |
218 | 111k | n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */ |
219 | 111k | if (n > 0) { |
220 | | /* Process chunks */ |
221 | 95.3k | HASH_BLOCK_DATA_ORDER(c, data, n); |
222 | 95.3k | n *= HASH_CBLOCK; |
223 | 95.3k | data += n; |
224 | 95.3k | len -= n; |
225 | 95.3k | } |
226 | | /* Buffer any left over data */ |
227 | 111k | if (len != 0) { |
228 | 110k | p = (unsigned char *)c->data; |
229 | 110k | c->num = (unsigned int)len; |
230 | 110k | memcpy(p, data, len); |
231 | 110k | } |
232 | 111k | return 1; |
233 | 111k | } Line | Count | Source | 168 | 15.3k | { | 169 | 15.3k | #ifdef HASH_UPDATE_THUNK | 170 | 15.3k | HASH_CTX *c = (HASH_CTX *)cp; | 171 | 15.3k | #endif | 172 | 15.3k | const unsigned char *data = data_; | 173 | 15.3k | unsigned char *p; | 174 | 15.3k | HASH_LONG l; | 175 | 15.3k | size_t n; | 176 | | | 177 | 15.3k | if (ossl_unlikely(len == 0)) | 178 | 0 | return 1; | 179 | | | 180 | 15.3k | l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL; | 181 | 15.3k | if (ossl_unlikely(l < c->Nl)) /* overflow */ | 182 | 0 | c->Nh++; | 183 | 15.3k | c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on | 184 | | * 16-bit */ | 185 | 15.3k | c->Nl = l; | 186 | | | 187 | 15.3k | n = c->num; | 188 | 15.3k | 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 | 15.3k | n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */ | 219 | 15.3k | if (n > 0) { | 220 | | /* Process chunks */ | 221 | 14.6k | HASH_BLOCK_DATA_ORDER(c, data, n); | 222 | 14.6k | n *= HASH_CBLOCK; | 223 | 14.6k | data += n; | 224 | 14.6k | len -= n; | 225 | 14.6k | } | 226 | | /* Buffer any left over data */ | 227 | 15.3k | if (len != 0) { | 228 | 14.9k | p = (unsigned char *)c->data; | 229 | 14.9k | c->num = (unsigned int)len; | 230 | 14.9k | memcpy(p, data, len); | 231 | 14.9k | } | 232 | 15.3k | return 1; | 233 | 15.3k | } |
Line | Count | Source | 168 | 96.3k | { | 169 | 96.3k | #ifdef HASH_UPDATE_THUNK | 170 | 96.3k | HASH_CTX *c = (HASH_CTX *)cp; | 171 | 96.3k | #endif | 172 | 96.3k | const unsigned char *data = data_; | 173 | 96.3k | unsigned char *p; | 174 | 96.3k | HASH_LONG l; | 175 | 96.3k | size_t n; | 176 | | | 177 | 96.3k | if (ossl_unlikely(len == 0)) | 178 | 0 | return 1; | 179 | | | 180 | 96.3k | l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL; | 181 | 96.3k | if (ossl_unlikely(l < c->Nl)) /* overflow */ | 182 | 0 | c->Nh++; | 183 | 96.3k | c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on | 184 | | * 16-bit */ | 185 | 96.3k | c->Nl = l; | 186 | | | 187 | 96.3k | n = c->num; | 188 | 96.3k | if (ossl_likely(n != 0)) { | 189 | | /* Gets here if we already have buffered input data */ | 190 | 3.22k | p = (unsigned char *)c->data; | 191 | | | 192 | 3.22k | 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 | 3.22k | memcpy(p + n, data, HASH_CBLOCK - n); | 198 | 3.22k | HASH_BLOCK_DATA_ORDER(c, p, 1); | 199 | 3.22k | n = HASH_CBLOCK - n; | 200 | 3.22k | data += n; | 201 | 3.22k | len -= n; | 202 | 3.22k | 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 | 3.22k | memset(p, 0, HASH_CBLOCK); /* keep it zeroed */ | 210 | 3.22k | } 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 | 3.22k | } | 217 | | | 218 | 96.3k | n = len / HASH_CBLOCK; /* Get number of input chunks (e.g. multiple of 512 bits for SHA256) */ | 219 | 96.3k | if (n > 0) { | 220 | | /* Process chunks */ | 221 | 80.7k | HASH_BLOCK_DATA_ORDER(c, data, n); | 222 | 80.7k | n *= HASH_CBLOCK; | 223 | 80.7k | data += n; | 224 | 80.7k | len -= n; | 225 | 80.7k | } | 226 | | /* Buffer any left over data */ | 227 | 96.3k | if (len != 0) { | 228 | 95.3k | p = (unsigned char *)c->data; | 229 | 95.3k | c->num = (unsigned int)len; | 230 | 95.3k | memcpy(p, data, len); | 231 | 95.3k | } | 232 | 96.3k | return 1; | 233 | 96.3k | } |
Unexecuted instantiation: MD5_Update Unexecuted instantiation: RIPEMD160_Update Unexecuted instantiation: ossl_sm3_update |
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: SHA1_Transform Unexecuted instantiation: SHA256_Transform Unexecuted instantiation: MD5_Transform Unexecuted instantiation: RIPEMD160_Transform Unexecuted instantiation: ossl_sm3_transform |
239 | | |
240 | | int HASH_FINAL(unsigned char *md, HASH_CTX *c) |
241 | 108k | { |
242 | 108k | unsigned char *p = (unsigned char *)c->data; |
243 | 108k | 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 | 108k | p[n] = 0x80; /* there is always room for one */ |
250 | 108k | n++; |
251 | | |
252 | 108k | 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 | 5.80k | memset(p + n, 0, HASH_CBLOCK - n); |
258 | 5.80k | n = 0; |
259 | 5.80k | HASH_BLOCK_DATA_ORDER(c, p, 1); |
260 | 5.80k | } |
261 | | /* Add zero padding - but leave enough room for L */ |
262 | 108k | memset(p + n, 0, HASH_CBLOCK - 8 - n); |
263 | | |
264 | | /* Add the 64 bit L value to the end of the buffer */ |
265 | 108k | p += HASH_CBLOCK - 8; |
266 | | #if defined(DATA_ORDER_IS_BIG_ENDIAN) |
267 | 108k | (void)HOST_l2c(c->Nh, p); |
268 | 108k | (void)HOST_l2c(c->Nl, p); |
269 | | #elif defined(DATA_ORDER_IS_LITTLE_ENDIAN) |
270 | 0 | (void)HOST_l2c(c->Nl, p); |
271 | 0 | (void)HOST_l2c(c->Nh, p); |
272 | | #endif |
273 | 108k | p -= HASH_CBLOCK; |
274 | | /* Process the final padded chunk */ |
275 | 108k | HASH_BLOCK_DATA_ORDER(c, p, 1); |
276 | 108k | c->num = 0; |
277 | 108k | OPENSSL_cleanse(p, HASH_CBLOCK); |
278 | | |
279 | | #ifndef HASH_MAKE_STRING |
280 | | #error "HASH_MAKE_STRING must be defined!" |
281 | | #else |
282 | 108k | HASH_MAKE_STRING(c, md); |
283 | 93.1k | #endif |
284 | | |
285 | 93.1k | return 1; |
286 | 108k | } Line | Count | Source | 241 | 15.3k | { | 242 | 15.3k | unsigned char *p = (unsigned char *)c->data; | 243 | 15.3k | 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 | 15.3k | p[n] = 0x80; /* there is always room for one */ | 250 | 15.3k | n++; | 251 | | | 252 | 15.3k | 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 | 1.60k | memset(p + n, 0, HASH_CBLOCK - n); | 258 | 1.60k | n = 0; | 259 | 1.60k | HASH_BLOCK_DATA_ORDER(c, p, 1); | 260 | 1.60k | } | 261 | | /* Add zero padding - but leave enough room for L */ | 262 | 15.3k | memset(p + n, 0, HASH_CBLOCK - 8 - n); | 263 | | | 264 | | /* Add the 64 bit L value to the end of the buffer */ | 265 | 15.3k | p += HASH_CBLOCK - 8; | 266 | 15.3k | #if defined(DATA_ORDER_IS_BIG_ENDIAN) | 267 | 15.3k | (void)HOST_l2c(c->Nh, p); | 268 | 15.3k | (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 | 15.3k | p -= HASH_CBLOCK; | 274 | | /* Process the final padded chunk */ | 275 | 15.3k | HASH_BLOCK_DATA_ORDER(c, p, 1); | 276 | 15.3k | c->num = 0; | 277 | 15.3k | OPENSSL_cleanse(p, HASH_CBLOCK); | 278 | | | 279 | | #ifndef HASH_MAKE_STRING | 280 | | #error "HASH_MAKE_STRING must be defined!" | 281 | | #else | 282 | 15.3k | HASH_MAKE_STRING(c, md); | 283 | 15.3k | #endif | 284 | | | 285 | 15.3k | return 1; | 286 | 15.3k | } |
Line | Count | Source | 241 | 93.1k | { | 242 | 93.1k | unsigned char *p = (unsigned char *)c->data; | 243 | 93.1k | 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 | 93.1k | p[n] = 0x80; /* there is always room for one */ | 250 | 93.1k | n++; | 251 | | | 252 | 93.1k | 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 | 4.20k | memset(p + n, 0, HASH_CBLOCK - n); | 258 | 4.20k | n = 0; | 259 | 4.20k | HASH_BLOCK_DATA_ORDER(c, p, 1); | 260 | 4.20k | } | 261 | | /* Add zero padding - but leave enough room for L */ | 262 | 93.1k | memset(p + n, 0, HASH_CBLOCK - 8 - n); | 263 | | | 264 | | /* Add the 64 bit L value to the end of the buffer */ | 265 | 93.1k | p += HASH_CBLOCK - 8; | 266 | 93.1k | #if defined(DATA_ORDER_IS_BIG_ENDIAN) | 267 | 93.1k | (void)HOST_l2c(c->Nh, p); | 268 | 93.1k | (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 | 93.1k | p -= HASH_CBLOCK; | 274 | | /* Process the final padded chunk */ | 275 | 93.1k | HASH_BLOCK_DATA_ORDER(c, p, 1); | 276 | 93.1k | c->num = 0; | 277 | 93.1k | OPENSSL_cleanse(p, HASH_CBLOCK); | 278 | | | 279 | | #ifndef HASH_MAKE_STRING | 280 | | #error "HASH_MAKE_STRING must be defined!" | 281 | | #else | 282 | 93.1k | HASH_MAKE_STRING(c, md); | 283 | 93.1k | #endif | 284 | | | 285 | 93.1k | return 1; | 286 | 93.1k | } |
Unexecuted instantiation: MD5_Final Unexecuted instantiation: RIPEMD160_Final Unexecuted instantiation: ossl_sm3_final |
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 |