Changeset 14048 in vbox for trunk/src/VBox/Runtime/common/checksum/md5.cpp
- Timestamp:
- Nov 10, 2008 10:43:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/md5.cpp
r8155 r14048 112 112 if ((ctx->bits[0] = t + ((uint32_t) len << 3)) < t) 113 113 ctx->bits[1]++; /* Carry from low to high */ 114 ctx->bits[1] += len >> 29;114 ctx->bits[1] += (uint32_t)(len >> 29); 115 115 116 116 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
Note:
See TracChangeset
for help on using the changeset viewer.