Overview
| Comment: | scrypt: Minor code formatting fix |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
86ad296becf1260a9e659683b9ca643e |
| User & Date: | js on 2017-08-11 20:15:39 |
| Other Links: | manifest | tags |
Context
|
2017-08-11
| ||
| 21:02 | OFTimer: Keep the original interval on overrun (check-in: 1164147eec user: js tags: trunk) | |
| 20:15 | scrypt: Minor code formatting fix (check-in: 86ad296bec user: js tags: trunk) | |
| 18:14 | Fix warnings with 32 bit Clang (check-in: 2071d164bb user: js tags: trunk) | |
Changes
Modified src/scrypt.m from [41ace0d09a] to [0c2ae20612].
| ︙ | ︙ | |||
30 31 32 33 34 35 36 |
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]);
| | | 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]);
for (uint_fast8_t i = 0; i < 8; i += 2) {
tmp[ 4] ^= OF_ROL(tmp[ 0] + tmp[12], 7);
tmp[ 8] ^= OF_ROL(tmp[ 4] + tmp[ 0], 9);
tmp[12] ^= OF_ROL(tmp[ 8] + tmp[ 4], 13);
tmp[ 0] ^= OF_ROL(tmp[12] + tmp[ 8], 18);
tmp[ 9] ^= OF_ROL(tmp[ 5] + tmp[ 1], 7);
tmp[13] ^= OF_ROL(tmp[ 9] + tmp[ 5], 9);
tmp[ 1] ^= OF_ROL(tmp[13] + tmp[ 9], 13);
|
| ︙ | ︙ |