| 68 | } |
| 69 | |
| 70 | static inline int blake2s_increment_counter( blake2s_state *S, const uint32_t inc ) |
| 71 | { |
| 72 | S->t[0] += inc; |
| 73 | S->t[1] += ( S->t[0] < inc ); |
| 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | // Parameter-related functions |
| 78 | static inline int blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length ) |
no outgoing calls
no test coverage detected