MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / blake2s_increment_counter

Function blake2s_increment_counter

Libraries/unrar/blake2s.cpp:50–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48
49
50static inline void blake2s_increment_counter( blake2s_state *S, const uint32 inc )
51{
52 S->t[0] += inc;
53 S->t[1] += ( S->t[0] < inc );
54}
55
56
57/* init2 xors IV with input parameter block */

Callers 2

blake2s_updateFunction · 0.85
blake2s_finalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected