Some helper functions, not necessarily useful */
| 52 | |
| 53 | /* Some helper functions, not necessarily useful */ |
| 54 | static inline int blake2s_set_lastblock( blake2s_state *S ) |
| 55 | { |
| 56 | if( S->last_node ) blake2s_set_lastnode( S ); |
| 57 | |
| 58 | S->f[0] = ~0U; |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | static inline int blake2s_clear_lastblock( blake2s_state *S ) |
| 63 | { |
no test coverage detected