Some helper functions, not necessarily useful */
| 57 | |
| 58 | /* Some helper functions, not necessarily useful */ |
| 59 | static inline int blake2b_set_lastblock( blake2b_state *S ) |
| 60 | { |
| 61 | if( S->last_node ) blake2b_set_lastnode( S ); |
| 62 | |
| 63 | S->f[0] = ~0ULL; |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | static inline int blake2b_clear_lastblock( blake2b_state *S ) |
| 68 | { |
no test coverage detected