MCPcopy Create free account
hub / github.com/F-Stack/f-stack / blake2b_increment_counter

Function blake2b_increment_counter

freebsd/contrib/libb2/blake2b-ref.c:75–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75static inline int blake2b_increment_counter( blake2b_state *S, const uint64_t inc )
76{
77 S->t[0] += inc;
78 S->t[1] += ( S->t[0] < inc );
79 return 0;
80}
81
82
83

Callers 2

blake2b_updateFunction · 0.70
blake2b_finalFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected