| 48 | |
| 49 | |
| 50 | static inline void blake2s_increment_counter( blake2s_state *S, const uint32 inc ) |
| 51 | { |
| 52 | S->t[0] += inc; |
| 53 | S->t[1] += ( S->t[0] < inc ); |
| 54 | } |
| 55 | |
| 56 | |
| 57 | /* init2 xors IV with input parameter block */ |
no outgoing calls
no test coverage detected