MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / c32toa

Function c32toa

extra/yassl/src/yassl_int.cpp:149–155  ·  view source on GitHub ↗

convert 32 bit integer to opaque

Source from the content-addressed store, hash-verified

147
148// convert 32 bit integer to opaque
149void c32toa(uint32 u32, opaque* c)
150{
151 c[0] = (u32 >> 24) & 0xff;
152 c[1] = (u32 >> 16) & 0xff;
153 c[2] = (u32 >> 8) & 0xff;
154 c[3] = u32 & 0xff;
155}
156
157
158States::States() : recordLayer_(recordReady), handshakeLayer_(preHandshake),

Callers 2

hmacFunction · 0.85
TLS_hmacFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected