| 91 | } |
| 92 | |
| 93 | static inline int blake2b_set_lastblock( blake2b_state *S ) |
| 94 | { |
| 95 | if( S->last_node ) blake2b_set_lastnode( S ); |
| 96 | |
| 97 | S->f[0] = ~0ULL; |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | static inline int blake2b_clear_lastblock( blake2b_state *S ) |
| 102 | { |
no test coverage detected