MCPcopy Create free account
hub / github.com/ddnet/ddnet / Gamma1

Function Gamma1

src/base/hash_libtomcrypt.cpp:62–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60static u32 Sigma1(u32 x) { return Rot(x, 6) ^ Rot(x, 11) ^ Rot(x, 25); }
61static u32 Gamma0(u32 x) { return Rot(x, 7) ^ Rot(x, 18) ^ Sh(x, 3); }
62static u32 Gamma1(u32 x) { return Rot(x, 17) ^ Rot(x, 19) ^ Sh(x, 10); }
63
64static void sha_compress(sha256_state *md, const unsigned char *buf)
65{

Callers 1

sha_compressFunction · 0.85

Calls 2

RotFunction · 0.85
ShFunction · 0.85

Tested by

no test coverage detected