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