MCPcopy Create free account
hub / github.com/diasurgical/devilution / SHA1Init

Function SHA1Init

Source/sha.cpp:143–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143void SHA1Init(SHA1Context *context)
144{
145 context->count[0] = 0;
146 context->count[1] = 0;
147 context->state[0] = 0x67452301;
148 context->state[1] = 0xEFCDAB89;
149 context->state[2] = 0x98BADCFE;
150 context->state[3] = 0x10325476;
151 context->state[4] = 0xC3D2E1F0;
152}
153
154DEVILUTION_END_NAMESPACE

Callers 1

SHA1ResetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected