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

Function ReadLE32

src/crypto/common.h:24–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24uint32_t static inline ReadLE32(const unsigned char* ptr)
25{
26 uint32_t x;
27 memcpy((char*)&x, ptr, 4);
28 return le32toh(x);
29}
30
31uint64_t static inline ReadLE64(const unsigned char* ptr)
32{

Callers 15

DecodeMethod · 0.85
MurmurHash3Function · 0.85
DecodeMethod · 0.85
UintToArith256Function · 0.85
GetMessageMethod · 0.85
Num3072Method · 0.85
Read4Function · 0.85
TransformFunction · 0.85
poly1305_authFunction · 0.85
SetKeyMethod · 0.85
CryptMethod · 0.85
Read8Function · 0.85

Calls 1

le32tohFunction · 0.85

Tested by 1

FUZZ_TARGETFunction · 0.68