C
typedef struct { DWORD h0; DWORD h1; DWORD h2; DWORD h3; DWORD h4; DWORD bytesSoFar; BYTE partialBlock[64]; HASH_TYPE hashType; } HASH_SUM;
Description
Context storage for a hash operation
Members
|
Members |
Description |
|
DWORD h0; |
Hash state h0 |
|
DWORD h1; |
Hash state h1 |
|
DWORD h2; |
Hash state h2 |
|
DWORD h3; |
Hash state h3 |
|
DWORD h4; |
Hash state h4 |
|
DWORD bytesSoFar; |
Total number of bytes hashed so far |
|
BYTE partialBlock[64]; |
Beginning of next 64 byte block |
|
HASH_TYPE hashType; |
Type of hash being calculated |