Some helper functions, not necessarily useful */
| 40 | |
| 41 | /* Some helper functions, not necessarily useful */ |
| 42 | static inline void blake2s_set_lastblock( blake2s_state *S ) |
| 43 | { |
| 44 | if( S->last_node ) blake2s_set_lastnode( S ); |
| 45 | |
| 46 | S->f[0] = ~0U; |
| 47 | } |
| 48 | |
| 49 | |
| 50 | static inline void blake2s_increment_counter( blake2s_state *S, const uint32 inc ) |
no test coverage detected