Changeset 37640 in project
- Timestamp:
- 06/02/19 18:42:57 (6 months ago)
- Location:
- release/5/sha1/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
release/5/sha1/trunk/sha1-base.c
r35839 r37640 135 135 j = context->count[0]; 136 136 if ((context->count[0] += len << 3) < j) 137 context->count[1] += (len>>29)+1; 137 context->count[1]++; 138 context->count[1] += len >> 29; 138 139 j = (j >> 3) & 63; 139 140 if ((j + len) > 63) { -
release/5/sha1/trunk/sha1.egg
r36675 r37640 4 4 5 5 ((synopsis "Computes SHA1 (FIPS-180-1) checksums") 6 (version "4.1. 1")6 (version "4.1.2") 7 7 (category crypt) 8 8 (author "Steve Reid, packaged for Chicken by Peter Bex")
Note: See TracChangeset
for help on using the changeset viewer.