MCPcopy Create free account
hub / github.com/ElementsProject/elements / Rotl

Function Rotl

src/crypto/sha3.cpp:20–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18namespace
19{
20uint64_t Rotl(uint64_t x, int n) { return (x << n) | (x >> (64 - n)); }
21} // namespace
22
23void KeccakF(uint64_t (&st)[25])

Callers 1

KeccakFFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected