diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-22 00:22:43 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-22 02:38:13 -0400 |
commit | 13887ed6888dad1608eb9530ebd83b6ba29db577 (patch) | |
tree | fcaaed11dc4812bd5754894a5f55462fa85f6698 /crypto | |
parent | 1f38ad8389bbca038d320c29d30aa1d6ed96b48d (diff) |
crypto: sha512_generic - Use 64-bit counters
This patch replaces the 32-bit counters in sha512_generic with
64-bit counters. It also switches the bit count to the simpler
byte count.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/sha512_generic.c | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/crypto/sha512_generic.c b/crypto/sha512_generic.c index 4fe95eb03226..9ed9f60316e5 100644 --- a/crypto/sha512_generic.c +++ b/crypto/sha512_generic.c | |||
@@ -144,7 +144,7 @@ sha512_init(struct shash_desc *desc) | |||
144 | sctx->state[5] = SHA512_H5; | 144 | sctx->state[5] = SHA512_H5; |
145 | sctx->state[6] = SHA512_H6; | 145 | sctx->state[6] = SHA512_H6; |
146 | sctx->state[7] = SHA512_H7; | 146 | sctx->state[7] = SHA512_H7; |
147 | sctx->count[0] = sctx->count[1] = sctx->count[2] = sctx->count[3] = 0; | 147 | sctx->count[0] = sctx->count[1] = 0; |
148 | 148 | ||
149 | return 0; | 149 | return 0; |
150 | } | 150 | } |
@@ -161,7 +161,7 @@ sha384_init(struct shash_desc *desc) | |||
161 | sctx->state[5] = SHA384_H5; | 161 | sctx->state[5] = SHA384_H5; |
162 | sctx->state[6] = SHA384_H6; | 162 | sctx->state[6] = SHA384_H6; |
163 | sctx->state[7] = SHA384_H7; | 163 | sctx->state[7] = SHA384_H7; |
164 | sctx->count[0] = sctx->count[1] = sctx->count[2] = sctx->count[3] = 0; | 164 | sctx->count[0] = sctx->count[1] = 0; |
165 | 165 | ||
166 | return 0; | 166 | return 0; |
167 | } | 167 | } |
@@ -174,15 +174,11 @@ sha512_update(struct shash_desc *desc, const u8 *data, unsigned int len) | |||
174 | unsigned int i, index, part_len; | 174 | unsigned int i, index, part_len; |
175 | 175 | ||
176 | /* Compute number of bytes mod 128 */ | 176 | /* Compute number of bytes mod 128 */ |
177 | index = (unsigned int)((sctx->count[0] >> 3) & 0x7F); | 177 | index = sctx->count[0] & 0x7f; |
178 | 178 | ||
179 | /* Update number of bits */ | 179 | /* Update number of bytes */ |
180 | if ((sctx->count[0] += (len << 3)) < (len << 3)) { | 180 | if (!(sctx->count[0] += len)) |
181 | if ((sctx->count[1] += 1) < 1) | 181 | sctx->count[1]++; |
182 | if ((sctx->count[2] += 1) < 1) | ||
183 | sctx->count[3]++; | ||
184 | sctx->count[1] += (len >> 29); | ||
185 | } | ||
186 | 182 | ||
187 | part_len = 128 - index; | 183 | part_len = 128 - index; |
188 | 184 | ||
@@ -211,18 +207,16 @@ sha512_final(struct shash_desc *desc, u8 *hash) | |||
211 | struct sha512_state *sctx = shash_desc_ctx(desc); | 207 | struct sha512_state *sctx = shash_desc_ctx(desc); |
212 | static u8 padding[128] = { 0x80, }; | 208 | static u8 padding[128] = { 0x80, }; |
213 | __be64 *dst = (__be64 *)hash; | 209 | __be64 *dst = (__be64 *)hash; |
214 | __be32 bits[4]; | 210 | __be64 bits[2]; |
215 | unsigned int index, pad_len; | 211 | unsigned int index, pad_len; |
216 | int i; | 212 | int i; |
217 | 213 | ||
218 | /* Save number of bits */ | 214 | /* Save number of bits */ |
219 | bits[3] = cpu_to_be32(sctx->count[0]); | 215 | bits[1] = cpu_to_be64(sctx->count[0] << 3); |
220 | bits[2] = cpu_to_be32(sctx->count[1]); | 216 | bits[0] = cpu_to_be64(sctx->count[1] << 3 | sctx->count[0] >> 61); |
221 | bits[1] = cpu_to_be32(sctx->count[2]); | ||
222 | bits[0] = cpu_to_be32(sctx->count[3]); | ||
223 | 217 | ||
224 | /* Pad out to 112 mod 128. */ | 218 | /* Pad out to 112 mod 128. */ |
225 | index = (sctx->count[0] >> 3) & 0x7f; | 219 | index = sctx->count[0] & 0x7f; |
226 | pad_len = (index < 112) ? (112 - index) : ((128+112) - index); | 220 | pad_len = (index < 112) ? (112 - index) : ((128+112) - index); |
227 | sha512_update(desc, padding, pad_len); | 221 | sha512_update(desc, padding, pad_len); |
228 | 222 | ||