Changeset 103416 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Feb 19, 2024 8:06:54 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/alt-md5.cpp
r98103 r103416 105 105 /* This is the central step in the MD5 algorithm. */ 106 106 #define MD5STEP(f, w, x, y, z, data, s) \ 107 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )107 ( w += f(x, y, z) + (data), w = w<<s | w>>(32-s), w += x ) 108 108 109 109
Note:
See TracChangeset
for help on using the changeset viewer.