mix functions for processBlock()
| 32 | { |
| 33 | // mix functions for processBlock() |
| 34 | inline uint32_t f1( uint32_t b, uint32_t c, uint32_t d ) |
| 35 | { |
| 36 | return d ^ ( b & ( c ^ d ) ); // original: f = (b & c) | ((~b) & d); |
| 37 | } |
| 38 | |
| 39 | inline uint32_t f2( uint32_t b, uint32_t c, uint32_t d ) |
| 40 | { |