mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:13:06 +00:00
[NTDLL][ADVAPI32][ADVAPI32_APITEST][CRYPTLIB] Add hash API exports for NT6+ and apitests with small fixes
- For NT6.0+, NTDLL exports those hash APIs that ADVAPI32 thunks forward to - Fix undocumented context structure layout and content - Add apitests to verify both of hash result and structure content
This commit is contained in:
parent
14beaec1d9
commit
f61e14f554
10 changed files with 342 additions and 22 deletions
|
@ -11,10 +11,9 @@ extern "C" {
|
|||
/* SHA Context Structure Declaration */
|
||||
typedef struct
|
||||
{
|
||||
ULONG Unknown[6];
|
||||
ULONG State[5];
|
||||
ULONG Count[2];
|
||||
UCHAR Buffer[64];
|
||||
UCHAR Buffer[64];
|
||||
ULONG State[5];
|
||||
ULONG Count[2];
|
||||
} SHA_CTX, *PSHA_CTX;
|
||||
|
||||
VOID NTAPI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue