Differences From Artifact [41ace0d09a]:
- File
src/scrypt.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 6168) [annotate] [blame] [check-ins using]
To Artifact [0c2ae20612]:
- File src/scrypt.m — part of check-in [86ad296bec] at 2017-08-11 20:15:39 on branch trunk — scrypt: Minor code formatting fix (user: js, size: 6169) [annotate] [blame] [check-ins using]
︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - + | of_salsa20_8_core(uint32_t buffer[16]) { uint32_t tmp[16]; for (uint_fast8_t i = 0; i < 16; i++) tmp[i] = OF_BSWAP32_IF_BE(buffer[i]); |
︙ |