Fixed indents in some files.

This commit is contained in:
23rd
2023-03-01 22:12:11 +03:00
parent 582df3f39f
commit 6ae15ff264
4 changed files with 18 additions and 18 deletions

View File

@@ -107,9 +107,9 @@ int32 *hashSha1(const void *data, uint32 len, void *dest) {
for (end = block + 64; block + 64 <= len; end = block + 64) {
for (uint32 i = 0; block < end; block += 4) {
temp[i++] = (uint32) buf[block + 3]
| (((uint32) buf[block + 2]) << 8)
| (((uint32) buf[block + 1]) << 16)
| (((uint32) buf[block]) << 24);
| (((uint32) buf[block + 2]) << 8)
| (((uint32) buf[block + 1]) << 16)
| (((uint32) buf[block]) << 24);
}
sha1PartHash(sha, temp);
}