MCPcopy Create free account
hub / github.com/WaykiChain/WaykiChain / f2

Function f2

src/crypto/sha1.cpp:25–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23
24uint32_t inline f1(uint32_t b, uint32_t c, uint32_t d) { return d ^ (b & (c ^ d)); }
25uint32_t inline f2(uint32_t b, uint32_t c, uint32_t d) { return b ^ c ^ d; }
26uint32_t inline f3(uint32_t b, uint32_t c, uint32_t d) { return (b & c) | (d & (b | c)); }
27
28uint32_t inline left(uint32_t x) { return (x << 1) | (x >> 31); }

Callers 1

TransformFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected